A = int(input())
B = int(input())
if A*B % 2 == 1:
	print("Odd")
else:
	print("Even")