13주차

Yona·2021년 11월 18일
0

🍕 baekjoon

목록 보기
21/31

문제

풀이

n=int(input())
num=[]

for _ in range(n):
    x = int(input())
    num.append(x)

for i in sorted(num):
    print(i)
profile
Sometimes you win, sometimes you learn 🏃‍♀️

0개의 댓글