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