#1148. python-列表-定义一个列表,都为整数(输入),进行从小到大的排序

python-列表-定义一个列表,都为整数(输入),进行从小到大的排序

Background

Description

python-列表-定义一个列表,都为整数(输入),进行从小到大的排序 输入: 输入的个数n 输入n个整数 输出: 从小到大排序的列表

Format

Input

Output

Samples

5
9
0
3
8
6
[9, 0, 3, 8, 6]
[0, 3, 6, 8, 9]

Limitation

1s, 1024KiB for each test case.