time limit per test2 seconds Note: gcd(a,b) is the greatest common divisor of a and b. Input Next T lines contain test cases — one per line. Each line contains two integers a and m (1≤a Output Example 直接猜结论最后球的是 phi(m/gcd(a,m))
memory limit per test256 megabytes
inputstandard input
outputstandard output
You are given two integers a and m. Calculate the number of integers x such that 0≤x
The first line contains the single integer T (1≤T≤50) — the number of test cases.
Print T integers — one per test case. For each test case print the number of appropriate x-s.
inputCopy
3
4 9
5 10
42 9999999967
outputCopy
6
1
9999999966
Note
In the first test case appropriate x-s are [0,1,3,4,6,7].
In the second test case the only appropriate x is 0.
最后输出欧拉函数求得互质个数
(但是欧拉打表会re不晓得为什么#include