https://www.acmicpc.net/problem/2752
저는 여러 개의 수를 입력 받은 뒤, 이를 sorted()로 오름차순 정렬해주었습니다.
sorted()
print(*sorted(map(int,input().split())))