// yukicoder: No.304 鍵(1) // 2019.4.14 bal4u #include int main() { int i; char s[10]; for (i = 0; i < 1000; i++) { printf("%03d\n", i), fflush(stdout); scanf("%s", s); if (*s == 'u') break; } return 0; }