Skip to content

Commit

Permalink
2750 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
ezidayzi committed Feb 27, 2022
1 parent 3274ee1 commit 44a9358
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Algorithm/BOJ/2750.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
n = int(input())
arr = []

for i in range(n):
arr.append(int(input()))

arr.sort()

for i in range(n):
print(arr[i])

0 comments on commit 44a9358

Please sign in to comment.