In the popular show "Dinner for Five", five contestants compete in preparing culinary delights. Every
evening one of them makes dinner and each of other four then grades it on a scale from
The number of points a contestant gets is equal to the sum of grades they got. The winner of the show is of course the contestant that gets the most points.
Write a program that determines the winner and how many points they got.
Input Specification
Five lines, each containing
The contestants are numbered
The input data will guarantee that the solution is unique.
Output Specification
Output on a single line the winner's number and their points, separated by a space.
Sample Input 1
Copy
5 4 4 5
5 4 4 4
5 5 4 4
5 5 5 4
4 4 4 5
Sample Output 1
Copy
4 19
Sample Input 2
Copy
4 4 3 3
5 4 3 5
5 5 2 4
5 5 5 1
4 4 4 4
Sample Output 2
Copy
2 17
Comments