Given a positive integer, N, the sequence of all fractions a / b with (0 < a b), (1 < b N) and a and b relatively prime, listed in increasing order, is called the Farey Sequence of order N.
For this problem, you will write a program to compute the length of the Farey sequence of order N (input).
输入格式:
The first line of input contains a single integer P, (1 <= P <= 10000), which is the number of data sets that follow. Each data set should be processed identically and independently.
Each data set consists of a single line of input. It contains the data set number, K, followed by the order N, N (2 <= N <= 10000), of the Farey Sequence whose length is to be found.
输出格式:
For each data set there is a single line of output. The single output line consists of the data set number, K, followed by a single space followed by the length of the Farey Sequence as a decimal integer.