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