import java.io.*;
import java.util.*;

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 in = new Scanner(System.in);
        int n = in.nextInt();
        int[] a = new int[n];
        for (int i = 0; i < n; i++) 
            a[i] = in.nextInt();
        
        int maxHeight = -1;
        int count = 0;
        
        for (int i = 0; i < n; i++) {
            if (a[i] > maxHeight) {
                maxHeight = a[i];
                count = 1;
            }
            else if (a[i] == maxHeight)
                count++;
        }
              
        System.out.println(count);
    }
}