a, b = gets.split.map(&:to_i) gcd = a.gcd(b) sqrt = Math.sqrt(gcd) puts sqrt == sqrt.to_i && sqrt.to_i**2 == gcd ? :Odd : :Even