Write a program to find the total number of a primes number in a given interval.
Given two integers S and E, count all primes between S and E.
The only line of input contains two integers S and E separated by a single space.
Output format :
The only line of the output prints the total number of primes.
1 <= N <= 100
2 10
4
The prime numbers between 2 and 10
are 2,3,5 and 7
2 5
3
.