PROGRAMMING:Scoring system of singing competition
A scoring system is designed for the students' singing competition. The scoring rules are as follows: a total of N judges give scores (0-100 points), one of the highest score and one of the lowest score is required to be removed, and the average score of the remaining scores is the final score. Enter a positive integer repeat (0 < repeat < 10) and perform the following operations:
Input a positive integer n (3 ≤ n ≤ 10), which means there are n judges, input n scores, output the final score, and reserve two decimal places of the result.
In brackets is a description
###Input example:
```in
1 (repeat=1)
5 (n=5)
90 85 86 91 88
```
###Output example:
```out
score:88.00
```
answer:If there is no answer, please comment
Input a positive integer n (3 ≤ n ≤ 10), which means there are n judges, input n scores, output the final score, and reserve two decimal places of the result.
In brackets is a description
###Input example:
```in
1 (repeat=1)
5 (n=5)
90 85 86 91 88
```
###Output example:
```out
score:88.00
```
answer:If there is no answer, please comment