import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); int count=1,max=Integer.MIN_VALUE; int height[] = new int[n]; for(int height_i=0; height_i < n; height_i++){ { height[height_i] = in.nextInt(); if(height[height_i]>=max) { if(height[height_i]==max) count++; else { max=height[height_i]; count=1; } } } }System.out.println(""+count); } }