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