A = int(input()) B = int(input()) ans = ['Even', 'Odd'][(A*B) % 2 == 1] print(ans)