#include #include using namespace std; int main() { string word; string word2; string line; cout << "Enter a line => "; getline(cin, line); cout << "The line was \"" << line << "\"." << endl; return 0; cout << "Enter a word => "; cin >> word; cout << "Enter a word => "; cin >> word2; cout << "The word was \"" << word << "\"." << endl; cout << "The word2 was \"" << word2 << "\"." << endl; return 0; }