import sys
# 读入第一行
num = int(input())
# 定义一个空字符串
Str = ""
# 读入第二行
for line in sys.stdin:
List = list(map(str, line.split()))
# 使用sort()方法对字符串进行排序
List.sort()
for i in range(len(List)):
shortStr = str(List[i])
Str += shortStr
if i < num - 1:
Str += ' '
print(Str)