#abc086b. [abc086_b]1 21
[abc086_b]1 21
Problem Statement
AtCoDeer the deer has found two positive integers, and . Determine whether the concatenation of and in this order is a square number.
Constraints
- and are integers.
Input
Input is given from Standard Input in the following format:
Output
If the concatenation of and in this order is a square number, print Yes
; otherwise, print No
.
Sample Input 1
1 21
Sample Output 1
Yes
As \= × , it is a square number.
Sample Input 2
100 100
Sample Output 2
No
is not a square number.
Sample Input 3
12 10
Sample Output 3
No