import math a, b = map(int, input().split()) n = math.gcd(a, b) x = 1 while n >= x*x*x*x: if n == x*x: print('Odd') break x += 1 else: print('Even')