import math A,B=map(int,input().split()) c=math.gcd(A,B) if int(math.sqrt(c))**2==c: print("Odd") else: print("Even")