Skip to content

Commit

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

for i in range(n):
arr.append(int(sys.stdin.readline()))

arr.sort()

for i in arr:
sys.stdout.write(str(i)+'\n')

0 comments on commit cbff89b

Please sign in to comment.