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