#include #include #include typedef long long ll; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(3); for (int i = 0; i < 1000; ++i) { if (i<10) std::cout << "00" << i << std::endl; else if (i<100) std::cout << "0" << i << std::endl; else std::cout << i << std::endl; std::string s; std::cin >> s; if (s == "unlocked") return 0; } return 0; }