This commit is contained in:
2023-06-24 21:12:25 +02:00
parent 3a93e94a41
commit f462e01bf5

4
pet.py Normal file
View File

@@ -0,0 +1,4 @@
points = []
for _ in range(5):
points.append(sum(map(int, input().split())))
print(f"{points.index(max(points)) + 1} {max(points)}")