T = int(input())
for test_case in range(1, T + 1):
data = list(map(int, input().split()))
result = max(data)
print("#"+str(test_case)+" "+str(result))
'Algorithm > SWEA' 카테고리의 다른 글
[SWEA / python] 2058. 자릿수 더하기 (0) | 2023.05.10 |
---|---|
[SWEA / python] 2063. 중간값 찾기 (0) | 2023.05.10 |
[SWEA / python] 2070. 큰 놈, 작은 놈, 같은 놈 (0) | 2023.05.10 |
[SWEA / python] 2071. 평균값 구하기 (0) | 2023.05.10 |
[SWEA / python] 2072. 홀수만 더하기 (0) | 2023.05.10 |