#Lutece0618. 无平方因子数

无平方因子数

Migrated from Lutece 618 无平方因子数

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

无平方因子数即对于任意一个素数ppp2p^2都不会整除那个数,如11 , 5=55=5 , 15=3×515=3\times 5都是无平方因子数,而20=22×520=2^2\times 5不是。现在给定一个nn (1n<10121 \leq n < 10^{12}) ,求区间[1,n][1,n]中无平方因子数的个数。

Input

第一行有个整数TT,代表数据组数(T10T \leq 10

接下来有TT行,每行有个整数nn (1n<10121 \leq n < 10^{12})

Output

输出TT行,每行输出一个整数代表区间[1,n][1,n]内的无平方因子数的个数。

Samples

3
1
10
30
1
7
19

Resources

UESTC Training for Math