def gcd(a,b): while b>0: a,b=b,a%b return a A,B=map(int,input().split()) N=gcd(A,B) print(["Even","Odd"][int(N**0.5)**2==N])