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