import std.stdio; import std.algorithm; import std.string; import std.conv; import std.range; void main() { immutable n = readln.chomp.to!int; auto a = readln.splitter.map!(to!int).array.sort(); writeln(n & 1 ? a[n / 2] : (a[n / 2] + a[n / 2 - 1]) / 2.0); }