You are given the number N.
Determine the number of pairs P,Q such that they satisfies the following conditions:
Note: Two integers a and b are called coprime, relatively prime, or mutually prime, if the only positive integer that is a divisor of both of these numbers is 1.
Input format
Output format
Print T lines. The ith line must contain the answer for the ith test case.
Constraints
1≤T≤10
1≤N≤109
In the first case the following pairs are suitable for us: (2,3);(2,5);(3,4).
In the second case the following pairs are suitable for us: (2,3);(2,5);(2,7);(2,9);(3,4);(3,5).