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