a = int(input())
b = int(input())

if a % 2 == 1 and b % 2 == 1:
    print("Odd")
else:
    print("Even")