Python/백준 python

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

CE : 하랑 2023. 3. 5. 09:48

 

 

 

 

 

 

 

문제

 

 

 

 

 

ex)

2
1 2 3
3 2 4

 

 

 

 

 

 

 

출력

 

한 줄에 하나씩 정답을 출력한다.

ex)

1
2

 

 



 

코드

 

import sys

T=int(sys.stdin.readline())

for _ in range(T):
    
    num=list(map(int,sys.stdin.readline().split()))
    print(min(num))