#include #include #include using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); cout.fill('0'); string S; int n = 0; do { cout << setw(3) << n++ << endl; cin >> S; if (S == "unlocked") { return 0; } } while (true); return 0; }