#Lutece1038. Euler function

Euler function

Migrated from Lutece 1038 Euler function

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 mm and nn, please calculate the following expression.

$\displaystyle{\sum_{k=m}^{n} \lfloor\frac{n}{k}\rfloor euler[k]}$

where x\lfloor x \rfloor is the maximum integer that is less than or equal to xx.

  • euler[k]euler[k] is defined as the number of xx in [1,k][1,k], satisfying gcd(x,k)=1gcd(x,k)=1.
  • gcd(x,k)gcd(x,k) is the greatest common divisor of xx and kk.

If you know nothing about euler function, you can visit the following link to learn some useful information.

http://en.wikipedia.org/wiki/Euler's_totient_function

Input

The first line of input contains a number TT, indicating the number of test cases. (T500)(T \leq 500)

For each case, the first line contains two integers mm and nn. (1mn109,1m106)(1 \leq m \leq n \leq 10^9, 1 \leq m \leq 10^6)

Output

For each case, output the answer in one line.

Samples

2
2 2
2 3
1
3

Note

Because the answer is so large, please use long long instead of int. Correspondingly, please use %lld instead of %d to scanf and printf.

Resources

The 13th UESTC Programming Contest Preliminary