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 maxHeight = 0; int numberOfCandles = 0; for (int i = 0; i < n; i++) { int nextCandleHeight = in.nextInt(); if (nextCandleHeight == maxHeight) { numberOfCandles++; } else if (nextCandleHeight > maxHeight) { maxHeight = nextCandleHeight; numberOfCandles = 1; } } System.out.println(numberOfCandles); } }