#include using namespace std; int main() { //int anInt{-99999}; string aString; string rest; cout << "Type in a word" << endl; cin >> aString; cin.ignore(100,'\n'); cout << "Type in another phrase" << endl; getline(cin, rest); cout <<"The word was \"" << aString << "\"" << endl; cout <<"The phrase was \"" << rest << "\"" << endl; return 0; }