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