language: Pascal (gpc) (gpc 20070904)
date: 105 days 4 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 mod 100=24) then
          writeln('yes')
   else  writeln('no');
end.