def Main(): a=int(input()) b=int(input()) if a%2 and b%2: print("Odd") else: print("Even") Main()