#P1069. C二级辅导-选择排序

C二级辅导-选择排序

<style type="text/css">p { margin-bottom: 0.21cm; }</style>

用选择法对10个整数排序。

Input

Output

Sample Input

9 8 7 6 5 4 3 2 1 0

Sample Output

0
1
2
3
4
5
6
7
8
9

HINT

Source