a = input().strip() b = input().strip() if a[-1] == '0' or b[-1] == '0': print("Even") else: print("Odd")