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