blob: 04563abdaec36587942d07146afdc2ad4af1b614 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <iostream>
using namespace std;
int main()
{
string name;
cout << "Hello! \n My name is CMD. \n What is yours? ";
cin >> name;
cout << "Oh, nice to meet you " << name;
return 0;
}
|