language: Pascal (gpc) (gpc 20070904)
date: 106 days 16 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
Program easy(input,output);
var N:integer;
begin
   readln (N);
   if (N*N mod 100=24) then
          writeln('yes')
   else  writeln('no');
end.