PROGRAMMING:Automorphic number
There are many beautiful numbers or number sets in the world of mathematics, such as Mason number, Goldbach conjecture, narcissus number, perfect number, automorphic number. Today, let's explore automorphic numbers. Automorphic number is a natural number whose mantissa of the square of a number is equal to the number itself. For example: 25 ^ 2 = 625, 76 ^ 2 = 57769376 ^ 2 = 87909376. Request the number of automorphic numbers within n
###Input format:
Enter n in the first line, and then enter n numbers M.
###Output format:
Output the number of automorphic numbers within m in one line, all outputs are completed in one line, and there is no extra space at the end.
###Input example:
```in
five
one
two
three
four
five
```
###Output example:
```out
2 2 2 2 3
```
answer:If there is no answer, please comment
###Input format:
Enter n in the first line, and then enter n numbers M.
###Output format:
Output the number of automorphic numbers within m in one line, all outputs are completed in one line, and there is no extra space at the end.
###Input example:
```in
five
one
two
three
four
five
```
###Output example:
```out
2 2 2 2 3
```
answer:If there is no answer, please comment