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