import math
A,B = map(int,input().split())

GCD = math.gcd(A, B)
if GCD**(1/2) == int(GCD**(1/2)):
    print('Odd')
else:
    print('Even')