#Lutece0474. How many primes

How many primes

Migrated from Lutece 474 How many primes

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

The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number theoreticians for thousands of years is the question of primality. A prime number is a number that is has no proper factors (it is only evenly divisible by 11 and itself). The first prime numbers are 2,3,5,72,3,5,7 but they quickly become less frequent. One of the interesting questions is how dense they are in various ranges. Adjacent primes are two numbers that are both primes, but there are no other prime numbers between the adjacent primes. For example, 2,32,3 are the only adjacent primes that are also adjacent numbers.

Your program is given 22 numbers: LL and UU (2L<U<2312\leq L< U<2^{31}), and you are to find how many primes between LL and UU.

Input

Each line of input will contain two positive integers, LL and UU, with L<UL < U. The difference between LL and UU will not exceed 1,000,0001,000,000.

Output

For each LL and UU, print a number index the number of primes between LL and UU.

Samples

2 5
3
2 1000000
78498

Resources

recommend by liverliu