n = gets.to_i a = gets.split.map(&:to_i) A = a.sort.length if A % 2 == 0 then puts (a[A / 2] + a[A / 2 - 1]) / 2.to_f else puts a[(A - 1) / 2] end