#include #include using namespace std; int main() { int num = 0; cout.fill('0'); while(true) { cout << setw(3) << num++ << endl; string res; cin >> res; if (res=="unlocked") break; } return 0; }