PROGRAMMING:Achievement statistics
There are Python examination results of a class. Please help the teacher to make the score statistics, find out the highest score and the lowest score, calculate the average score, and count the number of failed students.
###Input format:
Input the class number N in the first line, and the scores of n students in the second line (integers between 0 and 100), separated by spaces.
###Output format:
Output a total of four lines, respectively, the highest score, the lowest score, the average score and the number of failed, in which the average score retains 1 decimal place.
###Input example:
```in
ten
80 95 75 85 90 55 66 88 100 58
```
###Output example:
```out
Max: 100
Min: 55
Ave: 79.2
Fail: 2
```
answer:If there is no answer, please comment
###Input format:
Input the class number N in the first line, and the scores of n students in the second line (integers between 0 and 100), separated by spaces.
###Output format:
Output a total of four lines, respectively, the highest score, the lowest score, the average score and the number of failed, in which the average score retains 1 decimal place.
###Input example:
```in
ten
80 95 75 85 90 55 66 88 100 58
```
###Output example:
```out
Max: 100
Min: 55
Ave: 79.2
Fail: 2
```
answer:If there is no answer, please comment