from math import gcd, isqrt A, B = map(int, input().split()) G = gcd(A, B) print('Odd' if G == isqrt(G) ** 2 else 'Even')