//TLE #include using namespace std; int main(){ string ans = "000"; while(1){ cout << ans << endl; string tmp; cin >> tmp; if(tmp == "unlocked"){ return 0; } } return 0; }