#include using namespace std; int main() { /* int anInt{-999}; cout << "Enter an integer" << endl; cin >> anInt; cout << "The int is " << anInt << endl; */ string word; string phrase; cout << "Enter a word " << endl; cin >> word; cin.ignore(100, '\n'); cout << "The word is \"" << word << "\"" << endl; cout << "Enter a phrase " << endl; getline(cin, phrase); cout << "The phrase is \"" << phrase << "\"" << endl; return 0; }