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