fork(1) download
  1. n = int(input())
  2. t = map(int,input().split())
  3. t1 = sorted(t)
  4. print(t1)
  5.  
Success #stdin #stdout 0.02s 9256KB
stdin
4
10 13 12 8
stdout
[8, 10, 12, 13]