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