n = int(input())
for i in range(n):
a = input()
b = str(int(a)*int(a))
c = list(a)
c = len(c)
if str(a) == str(b[-c:]):
print("YES")
else:
print('NO')
'Python > 백준' 카테고리의 다른 글
백준 - 10988 펠린드롬인지 확인하기 (0) | 2022.10.01 |
---|---|
백준 1009 - 분산처리 (0) | 2022.09.30 |
백준 - 1357 뒤집힌 덧셈 (0) | 2022.09.28 |
백준 - 5585 거스름돈 (0) | 2022.09.27 |
백준 - 1712 손익분기점 (0) | 2022.09.26 |