#include #include using namespace std; int main() { string owner; string container; string roundTitle; string userItem1, userItem2, userItem3; // get the person, this is a singl word. cout << "Please enter a person (as a single word) => "; cin >> owner; cin.ignore(100, '\n'); // get the container cout << "Please enter a container (as a single word) that "; cout << owner << " ownes => "; cin >> container; cin.ignore(100, '\n'); cout << "Very well, we will look at items in your " << owner << "'s " << container << "." << endl; cout << endl; roundTitle = "In my " + owner + "'s " + container + " I found"; cout << roundTitle << endl; cout << " Please enter an item you found in your " << owner << "'s " << container << " => "; getline(cin, userItem1); cout << "You gave me a " << userItem1 << "." << endl; return 0; }