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