a = int(input(), 2) b = int(input(), 2) c = a * b if c % 2 == 0: print("Even") else: print("Odd")