n = gets.chomp.to_i a = gets.chomp.split.map(&:to_i) max = a.max x, y = 0, 0 a.each do |ai| if ai == max x += 1 else y += 1 end end puts "#{x} #{y}"