fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <cstdio>
  4. using namespace std;
  5.  
  6. int main() {
  7. string strName;
  8.  
  9. cout << "Hey kid, whats your name? : ";
  10. cin >> strName;
  11. cout << "So your name is " << strName << " Eh?" << endl;
  12.  
  13. getchar();
  14. return 0;
  15. }
Success #stdin #stdout 0s 2988KB
stdin
Nathan
stdout
Hey kid, whats your name? : So your name is Nathan Eh?