fork download
  1. #include <iostream> // Input-output library
  2. using namespace std;
  3.  
  4. int main() {
  5. string name;
  6. int age;
  7.  
  8. // Taking user input
  9. cout << "Enter your name: ";
  10. cin >> name;
  11.  
  12. cout << "Enter your age: ";
  13. cin >> age;
  14.  
  15. // Displaying output
  16. cout << "Hello, " << name << "! You are " << age << " years old." << endl;
  17.  
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Enter your name: Enter your age: Hello, ! You are 0 years old.