#include #include using namespace std; int main() { string firstName; string otherNames; cout << "Enter your first name => "; cin >> firstName; cout << endl; cin.ignore(256 , '\n'); cout << "Enter your other names => "; getline(cin, otherNames); cout << endl; cout << "The first name is \"" << firstName << '"' << endl; cout << "The other names are \"" << otherNames << "\"" << endl; return 0; }