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