etc/Coding Test
[codeup] 114. 세 수 중 가장 작은 수
Jun's N
2022. 1. 13. 20:38
n = list(map(int, input().split()))
print(min(n))
728x90