#Lutece0985. 同构数

同构数

Migrated from Lutece 985 同构数

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

写一个函数,判断所给出的数是否是同构数(若一个数出现在自己的平方数的右边就称为同构数,例如:55的平方数是2525,且55出现在2525的右边,55是同构数;又如2525出现在625625的右边,也是同构数)。程序要求不能用全局变量。

Input

有多组测试数据。输入的第一行是整数TT0<T700000<T\le 70000),表示测试数据的组数。每一组测试数据只包含整数nn,占一行。该行没有其它多余的符号。10n<10910\le n<10^9

Output

要求首先输出1327671\sim 32767中所有的同构数(从小到大),占一行,每个数后恰有一个空格。

对应每组输入,输出一行结果,如果对应数是同构数,则输出Yes,否则输出No。该行不能有其它多余的符号。

Samples

2
76
80586385
1 5 6 25 76 376 625 9376 
Yes
No

Note

如果数据过大,可以考虑long long数据类型。

Resources

wxiaoping C语言练习