1365: 单词排序

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:25 Solved:2

Description

输入 n 行英文单词,要将它们按字典中的次序排列(也就是从小到大的顺序)后输出。

Input

第一行,输入n的值(1<=n<=106

接下来的n行,每行输入一个英文单词。

Output

输出n行,每行输出符合题意的单词。

Sample Input Copy

5
two
one
three
offer
text

Sample Output Copy

offer
one
text
three
two