A = input() B = input() int_A = int(A, 2) int_B = int(B, 2) result = int_A * int_B if result % 2 == 0: print("Even") else: print("Odd")