K.py 71 B

123
  1. a= list(map(int, input().strip().split()))
  2. a.sort()
  3. for e in a:print(e)