You need to divide all the integers ranging from 1 to (both inclusive) into some groups. The only constraint is that, the integers in the same group must be co-prime. Each integer must belong to exactly one group.
What's the smallest possible number of groups you can achieve?
There are multiple test cases. The first line of the input is an integer
(about
), indicating the number of test cases. For each test case:
The first and only line contains an integer
(
).
For each test case output one line containing one integer, indicating the smallest possible number of groups one can achieve.