#include 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; }