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) {
        /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
         Scanner sc = new Scanner (System.in);
        int n = sc.nextInt();
        
        int count  = 1;
        int maxH = sc.nextInt();
        
        
        for(int i=0; i <n-1 ; i++){
            int tmp = sc.nextInt();
            if(tmp > maxH){
                count=1;
                maxH = tmp;
            }else if(tmp == maxH) {
                count++;
            } 
        }
        System.out.println(count);
    }
}