n=gets.to_i a=gets.split(/\s/).map(&:to_i) a=a.sort{|x,y|x<=>y}.slice(1,n-2) p=a.reduce(:+)/(n-2).to_f puts "%#.2f" % p