fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. cout << "Please enter your name: ";
  7. string username;
  8. cin >> username;
  9. cout << "hello, " << username << ", ..., goodbye\n";
  10. }
Success #stdin #stdout 0s 5636KB
stdin
Remy
stdout
Please enter your name: hello, Remy, ..., goodbye