Skip to content

Commit

Permalink
2750 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
ezidayzi committed Mar 6, 2022
1 parent 3274ee1 commit 8433c00
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 8433c00

Please sign in to comment.