#caddi2018a. [caddi2018_a]Product and GCD

[caddi2018_a]Product and GCD

Problem Statement

There are NN integers a1,a2,...,aNa_1, a_2, ..., a_N not less than 11. The values of a1,a2,...,aNa_1, a_2, ..., a_N are not known, but it is known that a1timesa2times...timesaN=Pa_1 \\times a_2 \\times ... \\times a_N = P.

Find the maximum possible greatest common divisor of a1,a2,...,aNa_1, a_2, ..., a_N.

Constraints

  • 1leqNleq10121 \\leq N \\leq 10^{12}
  • 1leqPleq10121 \\leq P \\leq 10^{12}

Input

Input is given from Standard Input in the following format:

NN PP

Output

Print the answer.


Sample Input 1

3 24

Sample Output 1

2

The greatest common divisor would be 22 when, for example, a1=2,a2=6a_1=2, a_2=6 and a3=2a_3=2.


Sample Input 2

5 1

Sample Output 2

1

As aia_i are positive integers, the only possible case is a1=a2=a3=a4=a5=1a_1 = a_2 = a_3 = a_4 = a_5 = 1.


Sample Input 3

1 111

Sample Output 3

111

Sample Input 4

4 972439611840

Sample Output 4

206