language: Pascal (gpc) (gpc 20070904)
date: 99 days 17 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
program even (input,output);
    var N, M ,sum, j : integer;
begin
    readln(M, N);
    sum:=M+N;
    j:= sum mod 100;
    if j=42 then writeln('yes')
      else writeln('no');
end.