#Lutece0447. T-Residual Set

T-Residual Set

Migrated from Lutece 447 T-Residual Set

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Given a pair of number (p,t)(p,t) where pp is a prime and tt is a non-negative integer.

The Residual Set of any prime number pp is all the integers between 11 and p1p-1,

that is, 1,2,3,4,,p2,p11, 2, 3, 4, \cdots, p-2, p-1.

What's more, a T-Residual Set of any prime number p means the set of integers below:

$1^T\ mod\ p, 2^T\ mod\ p, 3^T\ mod\ p, 4^T\ mod\ p, \cdots (p-2)^T\ mod \ p, (p-1)^T\ mod \ p$, where TT must be non-negative.

Now for each pair of (p,t)(p,t), you should calculate how many distinct numbers there are in the t-Residual Set of pp.

Input

A number TT (T106T\leq 10^6) in first line.

Then TT test cases follow.

Each Test case contains two number pp (0<p<1080<p<10^8) and tt (0<t<2310<t<2^{31}),

which meanings areaccording to the description.

Output

Output TT lines.

Each line contains one number, refers to the answer.

Samples

3
7 9
17 89
47 56
2
16
23

Resources

5th BUPT Programming Contest Final