from math import sqrt n=int(input()) for i in range(2,int(sqrt(n))+1): while n%(i*i)==0: n//=(i*i) print(n)