Answer: #include <iostream>
#include <string>
using namespace std;
int main() {
string input;
int value;
while (true) {
cin >> input;
if (input == "Done") {
break;
}
cin >> value;
if (value <= 45) {
cout << input << ": reorder soon" << endl;
}
}
return 0;
}
Explanation: hope it helps :)