Составить программу на Паскале с ветвлением
Var x, y : integer; begin read(x, y); if x > 3 and y > 2 then write('YES') else write('NO'); end.