Advertisement
Ikmik

sort.py

Jun 7th, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. #!/usr/bin/python3
  2. # file: sort.py
  3.  
  4. A = list(map(int, input().split()))
  5. A.sort()
  6. print(" ".join(map(str, A)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement