Duff is in love with lovely numbers! A positive integer x is called lovely if and only if there is no such positive integer a > 1 such that a2 is a divisor of x.
Malek has a number store! In his store, he has only divisors of positive integer n (and he has all of them). As a birthday present, Malek wants to give her a lovely number from his store. He wants this number to be as big as possible.
Malek always had issues in math, so he asked for your help. Please tell him what is the biggest lovely number in his store.
The first and only line of input contains one integer, n (1 ≤ n ≤ 1012).
Print the answer in one line.
10
10
12
6
In first sample case, there are numbers 1, 2, 5 and 10 in the shop. 10 isn't divisible by any perfect square, so 10 is lovely.
In second sample case, there are numbers 1, 2, 3, 4, 6 and 12 in the shop. 12 is divisible by 4 = 22, so 12 is not lovely, while 6 is indeedlovely.
#include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include <cmath> #include <vector> #include <queue> #include <algorithm> #include <set> using namespace std; #define MM(a) memset(a,0,sizeof(a)) typedef long long LL; typedef unsigned long long ULL; const int maxn = 1e7+5; const int mod = 1000000007; const double eps = 1e-7; bool prime[maxn]; LL p[maxn],k; ///素数筛选 void isprime() { k = 0; MM(prime); for(LL i=2; i<maxn; i++) { if(!prime[i]) { p[k++] = i; for(LL j=i*i; j<maxn; j+=i) prime[j] = 1; } } } LL fac[maxn], num[maxn], cnt; ///分解素因子算法 void Dec(LL x) { MM(num); cnt = 0; for(LL i=0; p[i]*p[i]<=x&&i<k; i++) { if(x%p[i] == 0) { fac[cnt] = p[i]; while(x%p[i] == 0) { num[cnt]++; x /= p[i]; } cnt++; } } if(x > 1) { fac[cnt] = x; num[cnt++] = 1; } } int main() { LL n; isprime(); while(cin>>n) { Dec(n); LL ans = 1; for(int i=0; i<cnt; i++) ans *= fac[i]; cout<<ans<<endl; } return 0; }