[Python] 2752: 세수정렬

1
2
3
4
5
6
7
8
9
import sys
 
arr = list(map(int, sys.stdin.readline().rstrip().split()))
 
arr.sort()
 
print(arr[0], arr[1], arr[2])
 
 
cs

관련글

cURL error 28: Connection timed out after 5000 milliseconds