Bronze Count
문제
After completing a competition, you are struck with curiosity. How many participants were awarded bronze level?
Gold level is awarded to all participants who achieve the highest score. Silver level is awarded to all participants who achieve the second highest score. Bronze level is awarded to all participants who achieve the third highest score.
Given a list of all the scores, your job is to determine the score required for bronze level and how many participants achieved this score.
[이미지 1]
입력
The first line of input contains a positive integer, N, representing the number of participants.
Each of the next N lines of input contain a single integer representing a participant’s score.
Each score is between 0 and 75 (inclusive) and there will be at least three distinct scores.
출력
Output a non-negative integer, S, and a positive integer, P, separated by a single space, where S is the score required for bronze level and P is how many participants achieved this score.
예제
예제 1
4 70 62 58 73
62 1
예제 2
8 75 70 60 70 70 60 75 70
60 2