using System; using System.Collections.Generic; using System.Linq; namespace y { class Program { static void Main(string[] args) { long n = long.Parse(Console.ReadLine()); var a = new List(); long e = (long)Math.Pow(10, n); for (long i = 1; i <= e / 2; i++) { if (e % i == 0) { Console.WriteLine(i); a.Add(e / i); } } foreach (var item in a) { Console.WriteLine(a); } } } }