Browse Source

Add 'L.py'

webturing 4 years ago
parent
commit
1199b97a02
1 changed files with 5 additions and 0 deletions
  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)