first commit
from old repository to a new repository
This commit is contained in:
10
boj/2751.py
Normal file
10
boj/2751.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from sys import stdin
|
||||
n=int(stdin.readline().rstrip())
|
||||
arr=[]
|
||||
for _ in range(n):
|
||||
arr.append(int(stdin.readline().rstrip()))
|
||||
|
||||
arr.sort()
|
||||
|
||||
for a in arr:
|
||||
print(a)
|
||||
Reference in New Issue
Block a user