from math import gcd def check(): A, B = map(int, input().split()) g = gcd(A,B) a = round(g**0.5) if a*a==g: return 'Odd' return 'Even' print(check())