Find Prime!

4.5

2 votes
Easy
Problem

Pawan has a deep love for prime numbers but he is too lazy.

He has been assigned a task to find the total number of primes in a given range. Pawan is getting late to complete the job and ask for your help. Can you?

Input

The first line of the test case contains an Integer T, denoting number of test cases. The following T lines contains 2 Integers a,b each.

Output

Print number of prime in the given range [a,b].

Constraints

1<=T<=10^3

1<=a<=b<=10^5

Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation

For the first test case the prime in the range [1,10] is {2,3,5,7} so the answer is 4.

Editor Image

?