def gcd(a,b): while b!=0: a,b=b,a%b return a A,B = map(int,input().split()) g = gcd(A,B) if (g**0.5).is_integer(): print("Odd") else: print("Even")