// 示例1:
// 输入:
// 9
// cap
// to
// cat
// card
// two
// too
// up
// boat
// boot
// 输出:
// boat
// boot
// cap
// card
// cat
// to
// too
// two
// up
import java.util.*;
public class Test14 {
public static void main(String[] args) {
System.out.println("please input:");
Scanner in = new Scanner(System.in);
int num = in.nextInt();
List<String> stringList = new ArrayList<>();
for(int i = 0; i<= num; i++){
stringList.add(in.nextLine());
}
stringList.remove(0);
Collections.sort(stringList);
for(String s : stringList){
System.out.println(s);
}
}
}