fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string first = "Marge";
  9. string last = "Simpson";
  10.  
  11. cout << "Hello " << first << " " << last << endl;
  12. cout << "Your first name is " << first << endl;
  13. cout << "Your last name is " << last << endl;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0.02s 2812KB
stdin
Standard input is empty
stdout
Hello Marge Simpson
Your first name is Marge
Your last name is Simpson