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