#abc084d. [abc084_d]2017-like Number

[abc084_d]2017-like Number

Problem Statement

We say that a odd number NN is similar to 2017 when both NN and (N+1)/2(N+1)/2 are prime.

You are given QQ queries.

In the ii-th query, given two odd numbers lil_i and rir_i, find the number of odd numbers xx similar to 2017 such that lixril_i ≤ x ≤ r_i.

Constraints

  • 1Q1051≤Q≤10^5
  • 1liri1051≤l_i≤r_i≤10^5
  • lil_i and rir_i are odd.
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

QQ l1l_1 r1r_1 :: lQl_Q rQr_Q

Output

Print QQ lines. The ii-th line (1iQ)(1≤i≤Q) should contain the response to the ii-th query.


Sample Input 1

1
3 7

Sample Output 1

2
  • 33 is similar to 2017, since both 33 and (3+1)/2=2(3+1)/2=2 are prime.
  • 55 is similar to 2017, since both 55 and (5+1)/2=3(5+1)/2=3 are prime.
  • 77 is not similar to 2017, since (7+1)/2=4(7+1)/2=4 is not prime, although 77 is prime.

Thus, the response to the first query should be 22.


Sample Input 2

4
13 13
7 11
7 11
2017 2017

Sample Output 2

1
0
0
1

Note that 20172017 is also similar to 2017.


Sample Input 3

6
1 53
13 91
37 55
19 51
73 91
13 49

Sample Output 3

4
4
1
1
1
2