← Back to List

9699번: RICE SACK ↗

Solutions

Python 3
100 B | 100 chars
for i in range(1,int(input())+1):print("Case #{}: {}".format(i,max(list(map(int,input().split())))))