#include using namespace std; int main() { cout.fill('0'); for(int i = 0; i < 1000; i++) { cout << setw(3) << i << endl; string s; cin >> s; if(s == "unlocked") {return 0;} } }