using System; class Program { static void Main() { int a = 0; while (true) { Console.WriteLine(String.Format("{0:D3}", a++)); if ("unlocked" == Console.ReadLine()) break; } } }