struct Int def square? s = Math.sqrt(self).floor s * s == self end end a, b = read_line.split.map &.to_i64 puts a.gcd(b).square? ? "Odd" : "Even"