瀏覽代碼

Add 'L.py'

webturing 4 年之前
父節點
當前提交
1199b97a02
共有 1 個文件被更改,包括 5 次插入0 次删除
  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)