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