n=int(input()) a=1 b=n i=2 while i*i<=n: if n%i==0:a=i;b=n//i i+=1 print(a,b)