소스 검색

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)