Ответ:

var

  a, b : integer;

begin

  read (a, b);

  if (a + b) mod 2 = 0 then writeln (‘Yes’) else writeln (‘No’);

end.