Skip to content

Commit f891624

Browse files
committed
[#12] Feat: Add 수 정렬하기2
1 parent 71f468a commit f891624

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

2751.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 수 정렬하기 2
2+
3+
list = [int(input()) for _ in range(int(input()))]
4+
5+
list.sort()
6+
7+
for i in list:
8+
print(i)

0 commit comments

Comments
 (0)