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

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

by 현장 2022. 9. 21.

-Code

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