basics/input_output.cpp
Kishan Takoordyal 3d8100ef37
init
2020-11-13 07:31:04 +04:00

17 lines
272 B
C++

#include <iostream>
using namespace std;
int main() {
string name;
string age;
cout << "What's your name?";
cin >> name;
cout << "How old are you?";
cin >> age;
cout << "Hi, my name is " << name << ", and I am " << age << " years old.";
}