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