def gcd(a,b): while b: a,b = b,a%b return a a,b = map(int, input().split()) g = gcd(a,b) print('Odd' if int(g**0.5)**2 == g else 'Even')