#include using namespace std; int main() { string name; string location; int number; string pluralNoun; /* Type your code here. */ cin >> name; cin >> location; cin >> number; cin >> pluralNoun; cout << name << " went to " << location << " to buy " << number << " different types of " << pluralNoun << "." << endl; return 0; }