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