using System; namespace yukicoder { class Program { static void Main(string[] args) { int a = int.Parse(Console.ReadLine()); int b=0; int c=0; for(int i = 1; i <= a-1; i++) { if(a % i == 0) { b = i; } } if (b == 1) { c = a; } else { c = a - b; } Console.WriteLine("{0} {1}",b,c); } } }