Score : $200$ points
AtCoDeer the deer has found two positive integers, $a$ and $b$. Determine whether the concatenation of $a$ and $b$ in this order is a square number.
Input is given from Standard Input in the following format:
$a$ $b$
If the concatenation of $a$ and $b$ in this order is a square number, print Yes
; otherwise, print No
.
1 21
Yes
As $121$ $=$ $11$ × $11$, it is a square number.
100 100
No
$100100$ is not a square number.
12 10
No