import math N, M = map(int,input().split()) g = math.gcd(N, M) print("Odd" if (g ** 0.5).is_integer() else "Even")