using System; public class Classmiya { static void Main() { string stdin = Console.ReadLine(); Int64 N = Int64.Parse(stdin); if (N == 0) return; double d = Math.Pow(10,N); Int64 x = (Int64)d; for (Int64 i = 1; i <= x; i++){ if(x % i == 0)Console.WriteLine(i); } } }