n = gets.to_i a = gets.split.map(&:to_i).sort puts n.odd? ? a[n / 2] : (a[n / 2 - 1] + a[n / 2]) / 2.0