using static System.Console;
class Program {
static void Main() => WriteLine("123".PadLeft(6, '0'));
}