about summary refs log tree commit diff
path: root/others/volume1/018.pas
blob: 053095c42352d37f0863cdbedfd286c3eec61a0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
uses cmath;

var
  n: int64;

begin
  readln(n);
  if issquare(n) then
    writeln('YES')
  else
    writeln('NO')
end.