L.py 98 B

12345
  1. a= list(map(int, input().strip().split()))
  2. x=int(input())
  3. a.append(x)
  4. a.sort()
  5. for e in a:print(e)