본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]9699번 RICE SACK

by 현장 2021. 4. 16.

-코드

t = int(input())

for i in range(t):
    n = list(map(int, input().split()))
    print(f"Case #{i + 1}: {max(n)}")