Skip to content

Commit

Permalink
위에서 아래로 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
ezidayzi committed Feb 20, 2022
1 parent 1d86176 commit 8753aa8
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
n = int(input())
array = []

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

array.sort(reverse=True)

for item in array:
print(item, end = ' ')

0 comments on commit 8753aa8

Please sign in to comment.