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