def gcd(a,b): if b==0: return a return gcd(b,a%b) a,b = map(int, input().split()) c = gcd(a,b) high = c+1 low = 0 ans = c+1 while low+1c: high = mid elif mid**2c: print("Even") else: print("Odd")