require "big" a = BigInt.new(read_line) b = BigInt.new(read_line) puts BigInt.new(a) * b % 2 == 0 ? "Even" : "Odd"