Python: Sắp xếp dãy số


Submit solution

Points: 1
Time limit: 10.0s
Memory limit: 20M

Problem type
Allowed languages
Python

Nhập vào một dãy số nguyên gồm \(N\) phần tử từ bàn phím, hãy sắp xếp dãy trên theo chiều tăng dần của trọng số và in ra màn hình.

Input
2 5 4 3 1
Output:
1 2 3 4 5

Comments

There are no comments at the moment.