def square?(n) s = Math.sqrt(n).floor s * s == n end require "big" a, b = read_line.split.map &.to_big_i puts square?(a.gcd(b)) ? "Odd" : "Even"