PROGRAMMING:Sports meeting 4
###Task description
```
Yu Long and many female students in the Games rope skipping competition, now need a ranking program, first input each student's score, and then output ranking and score. The rule of integral is:
(1) If there is no parallel, the points from the first to the eighth place are: 9, 7, 6, 5, 4, 3, 2, 1.
(2) If there are parallels, the integral will be divided equally.
For example, the ranking is: 100100100, 80, 80, 80, 70, 70, 70, 70, 70, 70, 70.
If there are 3 people in the first place (total score is 9 + 7 + 6), each person will get 22 / 3 points;
The fourth place is tied for three people (the total score is 5 points + 4 points + 3 points), then each person gets 4 points;
If the seventh place is tied for seven (the total score is 2 points + 1 points), each person will get 3 / 7 points.
```
###Input format:
```
A number of spaces separated by integers, representing the results of each person. The minimum number of people is one, and the maximum number is not more than 1000.
```
###Output format:
```
The first line is the title line, which is output as an example.
Output serial number, score, rank and integral by line, each column occupies 8 places, and all columns are left aligned except integral column. The integral is a real number with 3 decimal places.
Only output data with points (top 8 or top 8).
```
###Input example:
```in
150 120 180 135 100 180 150 135 100 100 90 70 60 50
```
###Output example:
```out
XUHAO---CHENGJI-MINGCI--JIFEN---
1 180 1 8.000
2 180 1 8.000
3 150 3 5.500
4 150 3 5.500
5 135 5 3.500
6 135 5 3.500
7 120 7 2.000
8 100 8 0.333
9 100 8 0.333
10 100 8 0.333
```
###Input example:
```in
150 120 100 180 135 100
```
###Output example:
```out
XUHAO---CHENGJI-MINGCI--JIFEN---
1 180 1 9.000
2 150 2 7.000
3 135 3 6.000
4 120 4 5.000
5 100 5 3.500
6 100 5 3.500
```
answer:If there is no answer, please comment
```
Yu Long and many female students in the Games rope skipping competition, now need a ranking program, first input each student's score, and then output ranking and score. The rule of integral is:
(1) If there is no parallel, the points from the first to the eighth place are: 9, 7, 6, 5, 4, 3, 2, 1.
(2) If there are parallels, the integral will be divided equally.
For example, the ranking is: 100100100, 80, 80, 80, 70, 70, 70, 70, 70, 70, 70.
If there are 3 people in the first place (total score is 9 + 7 + 6), each person will get 22 / 3 points;
The fourth place is tied for three people (the total score is 5 points + 4 points + 3 points), then each person gets 4 points;
If the seventh place is tied for seven (the total score is 2 points + 1 points), each person will get 3 / 7 points.
```
###Input format:
```
A number of spaces separated by integers, representing the results of each person. The minimum number of people is one, and the maximum number is not more than 1000.
```
###Output format:
```
The first line is the title line, which is output as an example.
Output serial number, score, rank and integral by line, each column occupies 8 places, and all columns are left aligned except integral column. The integral is a real number with 3 decimal places.
Only output data with points (top 8 or top 8).
```
###Input example:
```in
150 120 180 135 100 180 150 135 100 100 90 70 60 50
```
###Output example:
```out
XUHAO---CHENGJI-MINGCI--JIFEN---
1 180 1 8.000
2 180 1 8.000
3 150 3 5.500
4 150 3 5.500
5 135 5 3.500
6 135 5 3.500
7 120 7 2.000
8 100 8 0.333
9 100 8 0.333
10 100 8 0.333
```
###Input example:
```in
150 120 100 180 135 100
```
###Output example:
```out
XUHAO---CHENGJI-MINGCI--JIFEN---
1 180 1 9.000
2 150 2 7.000
3 135 3 6.000
4 120 4 5.000
5 100 5 3.500
6 100 5 3.500
```
answer:If there is no answer, please comment