import math A,B = map(int,input().split()) GCD = math.gcd(A, B) if GCD == int(GCD**(1/2))**2: print('Ood') else: print('Even')