#OLD297. 排序(难度:3)

排序(难度:3)

Description

给你n个小写字母,按照字母升序排列后输出。

Format

Input

第一行:n

第二行:n个小写字母,每两个中间以一个空格隔开。

Output

按照升序排序后输出。

Samples

3
c b a
a b c

Hint