We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65b9498 commit bd10b19Copy full SHA for bd10b19
1 file changed
심수연/7주차/260212.py
@@ -0,0 +1,9 @@
1
+# https://www.acmicpc.net/problem/2750
2
+import sys
3
+input = sys.stdin.readline
4
+
5
+N = int(input())
6
+arr = sorted(int(input()) for _ in range(N))
7
8
+for i in range(N):
9
+ print(arr[i])
0 commit comments