#C774. Highest Score Winners
Highest Score Winners
Highest Score Winners
You are given the scores of children in a competition. Your task is to count how many children achieved the highest score.
The input begins with an integer (n) (which may be zero) representing the number of children. If (n > 0), the next line contains (n) integers separated by spaces, each representing a child's score. If (n = 0), there are no scores.
Your program should output a single integer: the number of children who attained the highest score.
(\textbf{Example:})
Input: 5\n85 90 78 90 88
Output: 2
inputFormat
The first line contains an integer (n) denoting the number of scores. If (n > 0), the second line contains (n) space-separated integers, which are the scores of the children.
outputFormat
Output a single integer which is the count of children with the highest score.## sample
5
85 90 78 90 88
2
</p>