#icpc2012autumna. [icpc2012autumn_a]Dictionary

[icpc2012autumn_a]Dictionary

Problem Statement

We found a dictionary of the Ancient Civilization Mayo (ACM) during excavation of the ruins. After analysis of the dictionary, we revealed they used a language that had not more than 26 letters. So one of us mapped each letter to a different English alphabet and typed all the words in the dictionary into a computer.

How the words are ordered in the dictionary, especially whether they are ordered lexicographically, is an interesting topic to many people. As a good programmer, you are requested to write a program to judge whether we can consider the words to be sorted in a lexicographical order.

Note: In a lexicographical order, a word always precedes other words it is a prefix of. For example, ab precedes abc, abde, and so on.


Input

The input consists of multiple datasets. Each dataset is formatted as follows:

nn string1string_1 ... stringnstring_n

Each dataset consists of n+1n+1 lines. The first line of each dataset contains an integer that indicates nn (1leqnleq5001 \\leq n \\leq 500). The ii-th line of the following nn lines contains stringistring_i, which consists of up to 10 English lowercase letters.

The end of the input is 0, and this should not be processed.

Output

Print either yes or no in a line for each dataset, in the order of the input. If all words in the dataset can be considered to be ordered lexicographically, print yes. Otherwise, print no.


Sample Input


4
cba
cab
b
a
3
bca
ab
a
5
abc
acb
b
c
c
5
abc
acb
c
b
b
0

Output for the Sample Input


yes
no
yes
no

Source Name

JAG Practice Contest for ACM-ICPC Asia Regional 2012