PROGRAMMING:Beauty ranking
In the twinkling of an eye, half a semester later, little c got to know the students in the whole department. The men of science and technology were sultry, and little C and his roommates were no exception. At the end of the evening study, little C and his roommate are bored in the dormitory, chatting to mm, because each boy has his own snow white in his heart, and his roommate's evaluation of tie flower is not unified. Small C think of a way, small C and roommate (a bedroom 6 people) respectively on their hearts of the Department of flower score. Small C did not learn statistics, so for convenience, the sum of the highest score for the Department of flowers.
###Input format:
Multiple groups of test data, each group of test data 6 lines, each line of a person name (no spaces, length of no more than 15 characters), followed by 6 people on the name of the score (10 points system).
###Output format:
The name with the highest total score. If there are multiple people with the highest score at the same time, the name with the earliest score will be output. Each output occupies one line.
###Input example:
Here is a set of inputs. For example:
```in
Rose 10 10 9 9 9 1
Lisa 10 9 9 9 9 3
Alice 9 9 9 9 9 4
Becky 8 8 8 8 8 8
Ellen 3 4 5 6 7 8
Linda 10 1 1 10 10 10
```
###Output example:
The corresponding output is given here. For example:
```out
Lisa
```
answer:If there is no answer, please comment
###Input format:
Multiple groups of test data, each group of test data 6 lines, each line of a person name (no spaces, length of no more than 15 characters), followed by 6 people on the name of the score (10 points system).
###Output format:
The name with the highest total score. If there are multiple people with the highest score at the same time, the name with the earliest score will be output. Each output occupies one line.
###Input example:
Here is a set of inputs. For example:
```in
Rose 10 10 9 9 9 1
Lisa 10 9 9 9 9 3
Alice 9 9 9 9 9 4
Becky 8 8 8 8 8 8
Ellen 3 4 5 6 7 8
Linda 10 1 1 10 10 10
```
###Output example:
The corresponding output is given here. For example:
```out
Lisa
```
answer:If there is no answer, please comment