fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. string name;
  6. cin >> name;
  7. cout<< "HELLO " << name << endl;
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 5292KB
stdin
manh
stdout
HELLO manh