webturing 4 anos atrás
pai
commit
1199b97a02
1 arquivos alterados com 5 adições e 0 exclusões
  1. 5 0
      L.py

+ 5 - 0
L.py

@@ -0,0 +1,5 @@
+a= list(map(int, input().strip().split()))
+x=int(input())
+a.append(x)
+a.sort()
+for e in a:print(e)