import math a,b = map(int,input().split()) g = math.gcd(a,b) if int(g**0.5)**2 == g: print("Odd") else: print("Even")