about summary refs log tree commit diff
path: root/others/volume1/018.pas
blob: 0e2d2937d6ed2cf5c4da018dfa156aeda7e404e2 (plain) (blame)
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.