1 2 3 4 5 6 7 8 9 10 11 12
uses clib; var n: int64; begin readln(n); if issquare(n) then writeln('YES') else writeln('NO') end.