Составьте алгоритм на Паскале ♥️
var
a, b: integer;
begin
Read(a, b);
if (a + b) mod 2 = 0 then
Write(a + b)
else
Write(a * b)
end.