using System; using System.Collections.Generic; using System.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; long num = long.Parse(Reader.ReadLine()); long[] ans = new long[]{1, num}; for(long i=2; i*i<= num; i++) { if(num%i==0) { ans = new long[] {i, num / i}; } } Console.WriteLine(ans[0] + " " + ans[1]); } public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 4 "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } } static void Main() { Program prg = new Program(); prg.Proc(); } }