print(*sorted(map(int, input().split())))sort.Ints(nums)
for _, x := range nums {
fmt.Fprint(wr, x, " ")
}sort.Ints()를 사용해서 정렬 후 출력let seq = input.split(" ").map(x => parseInt(x)).sort(function(x, y){return x - y})
console.log(seq.join(" "))split().map()을 활용해서 입력을 숫자 배열로 변경, 이후 sort()를 활용해서 정렬