import std.stdio, std.conv, std.string, std.range, std.array, std.algorithm; void main(){ auto buf = readln().strip().split().map!(to!int)().array; auto A = readln().strip().split().map!(to!int)().array; reduce!"a - b"(buf[0]*buf[1], A).max(-1).writeln(); }