n=int(input()) m=1 while m**2<=n: m+=1 if n//(m**2)==0: n/=m**2 print(n)