PROGRAMMING:Score of singing competition
There are 10 singers (numbered 1-10) participating in the singing competition, and another 6 judges scoring. The score of each singer is input from the keyboard to calculate the final score of each singer (the average score after deducting the highest score and the lowest score). Finally, the number and final score of each singer are output in the order of final score from high to low.
###Input format:
Enter the score of the first singer's 6 judges in turn (10 point system, the score is integer, and the scores are separated by spaces), the score of the second singer's 6 judges... And so on.
###Output format:
Refer to the output example, output the number and final score of each singer in the order of final score from high to low (the final score retains 2 decimal places).
###Input example:
```in
1 4 7 3 6 3
8 7 8 5 9 8
7 5 6 8 5 4
7 6 7 5 6 5
3 5 6 7 5 5
7 7 7 8 9 6
7 7 6 7 6 8
9 4 3 7 3 6
4 8 6 7 5 8
8 7 8 8 9 8
```
###Output example:
```out
No.10: 8.00
No.2 : 7.75
No.6 : 7.25
No.7 : 6.75
No.9 : 6.50
No.4 : 6.00
No.3 : 5.75
No.5 : 5.25
No.8 : 5.00
No.1 : 4.00
```
answer:If there is no answer, please comment
###Input format:
Enter the score of the first singer's 6 judges in turn (10 point system, the score is integer, and the scores are separated by spaces), the score of the second singer's 6 judges... And so on.
###Output format:
Refer to the output example, output the number and final score of each singer in the order of final score from high to low (the final score retains 2 decimal places).
###Input example:
```in
1 4 7 3 6 3
8 7 8 5 9 8
7 5 6 8 5 4
7 6 7 5 6 5
3 5 6 7 5 5
7 7 7 8 9 6
7 7 6 7 6 8
9 4 3 7 3 6
4 8 6 7 5 8
8 7 8 8 9 8
```
###Output example:
```out
No.10: 8.00
No.2 : 7.75
No.6 : 7.25
No.7 : 6.75
No.9 : 6.50
No.4 : 6.00
No.3 : 5.75
No.5 : 5.25
No.8 : 5.00
No.1 : 4.00
```
answer:If there is no answer, please comment