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