fork download
  1. // Level 1 - Contest 2 - Question 1 - Solution 1.
  2. #include <iostream>
  3. #include <cmath>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. string s;
  10. cin >> s;
  11.  
  12. cout << "Hello, " << s << endl;
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5244KB
stdin
programmer
stdout
Hello, programmer