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