import java.util.*; import java.io.*; import java.math.*; public class No300 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long x = sc.nextLong(); // int c = 0; // int y = 1; long i = 2; while(x >= (i*i)) { // for(int i = 2; i <= x; ) { // System.out.println("i = " + i + ", x = " + x); if(x%(i*i) == 0) { x /= i*i; // c += 1; }else { // if(c%2 != 0) { // y *= i; // } // c = 0; i += 1; } } // if(c%2 != 0) y *= i; System.out.println(x); } }