PROGRAMMING:Campus competition - ten judges
Title Requirements:
Our college often organizes various skills competitions, such as the flash works competition in the computer culture festival. There are 10 judges under the stage to judge the contestants' works. The judges' score is an integer of 0-100 points. The final score of the contestants is the average score of the remaining points after removing the highest score and the lowest score.
It is required to design a software, which can continuously input the scores of 10 judges, and can calculate the scores of contestants infinitely (prompt, you can continue to input the next batch of scores without quitting)
###Input format:
90 100 80 70 65 86 77 89 91 73
###Output format:
100 65
eighty-two
###Input example:
Here is a set of inputs. For example:
```in
ninety
one hundred
eighty
seventy
sixty-five
eighty-six
seventy-seven
eighty-nine
ninety-one
seventy-three
```
###Output example:
The corresponding output is given here. For example:
```out
100 65
eighty-two
```
answer:If there is no answer, please comment
Our college often organizes various skills competitions, such as the flash works competition in the computer culture festival. There are 10 judges under the stage to judge the contestants' works. The judges' score is an integer of 0-100 points. The final score of the contestants is the average score of the remaining points after removing the highest score and the lowest score.
It is required to design a software, which can continuously input the scores of 10 judges, and can calculate the scores of contestants infinitely (prompt, you can continue to input the next batch of scores without quitting)
###Input format:
90 100 80 70 65 86 77 89 91 73
###Output format:
100 65
eighty-two
###Input example:
Here is a set of inputs. For example:
```in
ninety
one hundred
eighty
seventy
sixty-five
eighty-six
seventy-seven
eighty-nine
ninety-one
seventy-three
```
###Output example:
The corresponding output is given here. For example:
```out
100 65
eighty-two
```
answer:If there is no answer, please comment