Game of Numbers

3.9

8 votes
Mathematics, Medium
Problem

Game of numbers is a game where you are given two integers (X and Y), and you have to print the number of special numbers between X and Y both inclusive.
The property of a special numbers is as follows:
A special number is not divisible by any number of the form ZZ* where (Z>1).

Input:
T, the number of test cases. Each test case consists of two space separated integers denoting X and Y.

Output: The required answer in one line for each test case.

Constraints:
1T10
1X,Y109
0|XY|106

Sample Input
1
1 10
Sample Output
7
Time Limit: 3
Memory Limit: 256
Source Limit:
Explanation

In given test case, 4,8 and 9 are not special.

Contributers:
Editor Image

?