Язык: Python 3
Код:
a = int(input())
b = int(input())
if (a % 2 == 0) or (b % 2 == 0):
print('YES')
else:
print('NO')
Язык: Python 3
Код:
a = int(input())
b = int(input())
if (a % 2 == 0) or (b % 2 == 0):
print('YES')
else:
print('NO')