Answer:
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
int n;
while (cin >> s) {
if (s == "End") break;
cin >> n;
if (n < 45) cout << s << ": reorder soon" << endl;
}
return 0;
Step-by-step explanation:
9.4m questions
12.1m answers