#CADDI2018A. Product and GCD

Product and GCD

Score : 300300 points

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 a1×a2×...×aN=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

  • 1N10121 \leq N \leq 10^{12}
  • 1P10121 \leq P \leq 10^{12}

Input

Input is given from Standard Input in the following format:

NN PP

Output

Print the answer.

3 24
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.

5 1
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.

1 111
111
4 972439611840
206