#include #include using namespace std; int main() { string firstName; string restOfName; cout << "Enter your first name " ; cin >> firstName; cin.ignore(100,'\n'); //getline(cin, restOfName); //getline(cin, firstName); cout << "Enter the rest of your name " ; getline(cin, restOfName); cout << "Hello " << firstName << " " << restOfName << endl; return 0; }