Beakjoon&프로그래머스/파이썬

[백준/파이썬] 25494번 단순한 문제 (Small)

현장 2022. 9. 21. 18:20

-Code

for _ in range(int(input())):
    li = list(map(int, input().split()))
    print(min(li))