codeflash-internal/experiments/pie_test_set/p03455.py

10 lines
158 B
Python

def problem_p03455(input_data):
a, b = list(map(int, input_data.split()))
if a * b % 2 == 1:
return "Odd"
else:
return "Even"