#P661F. Primes in Interval

Primes in Interval

No submission language available for this problem.

Description

You are given two integers a and b (a ≤ b). How many prime numbers are there on the interval from a to b, inclusive?

The input contains two integers a and b (2 ≤ a ≤ b ≤ 1 000 000), separated by a single space.

Output a single integer — the number of primes between a and b, inclusive.

Input

The input contains two integers a and b (2 ≤ a ≤ b ≤ 1 000 000), separated by a single space.

Output

Output a single integer — the number of primes between a and b, inclusive.

Samples

Sample Input 1

10 20

Sample Output 1

4

Sample Input 2

23 23

Sample Output 2

1

Sample Input 3

271 566

Sample Output 3

46