21 lines
376 B
C++
Raw Normal View History

2021-02-19 12:06:26 -05:00
#include <iostream>
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;
}