language: Pascal (gpc) (gpc 20070904)
date: 106 days 11 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
program even (input,output);
    var N, M, i: integer;
begin
   readln(M, N);
   i:=0;
   if (not odd(M)) then i:=i+1;
   if (not odd(N)) then i:=i+1;
   writeln(i);
end.