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