21 lines
376 B
C++
21 lines
376 B
C++
|
#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;
|
||
|
}
|
||
|
|