#include using namespace std; typedef long long ll; int main() { for (int i = 0; i <= 999; i++) { printf("%03d\n", i); string s; cin >> s; if (s == "unlocked") break; } return 0; }