PROGRAMMING:The average score of students and the number of passing students were counted
This requires the preparation of procedures to calculate the average score of students, and statistics pass (score not less than 60 points) of the number. Ensure that the input and output are in the range of integer.
###Input format:
Enter the non negative integer n in the first line, which is the number of students. The second line gives n non negative integers, that is, the scores of these n students, separated by spaces.
###Output format:
Output in the following format:
```
Average = average score
Count = number of qualified students
```
The average value is accurate to one decimal place.
###Input example:
```in
five
77 54 92 73 60
```
###Output example:
```out
average = 71.2
count = 4
```
answer:If there is no answer, please comment
###Input format:
Enter the non negative integer n in the first line, which is the number of students. The second line gives n non negative integers, that is, the scores of these n students, separated by spaces.
###Output format:
Output in the following format:
```
Average = average score
Count = number of qualified students
```
The average value is accurate to one decimal place.
###Input example:
```in
five
77 54 92 73 60
```
###Output example:
```out
average = 71.2
count = 4
```
answer:If there is no answer, please comment