시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB2011850.000%

문제

In this problem, you are given a list of words (sequence of lower case letters). From this list, find the longest chain of words w1, ..., wn such that wi is a mixed extension of wi-1. A word A is a mixed extension of another word B if A can be formed by adding one letter to B and permuting the result. For example, "ab", "bar", "crab", "cobra", and "carbon" form a chain of length 5.

입력

The input file contains at least two, but no more than 10000 lines. Each line contains a word. The length of each word is at least 1 and no more than 20. All words in the input are distinct.

출력

Write the longest chain that can be constructed from the given words. Output each word in the chain on a separate line, starting from the first one. If there are multiple longest chains, any longest chain is acceptable.

예제 입력 1

ab
arc
arco
bar
bran
carbon
carbons
cobra
crab
crayon
narc

예제 출력 1

ab
bar
crab
cobra
carbon
carbons