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