Problem10503--ABC109 —— B - Shiritori

10503: ABC109 —— B - Shiritori

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Takahashi is practicing shiritori alone again today.

Shiritori is a game as follows:

-   In the first turn, a player announces any one word.
-   In the subsequent turns, a player announces a word that satisfies the following conditions:
    -   That word is not announced before.
    -   The first character of that word is the same as the last character of the last word announced.

In this game, he is practicing to announce as many words as possible in ten seconds.

You are given the number of words Takahashi announced, $N$, and the $i$-th word he announced, $W_i$, for each $i$. Determine if the rules of shiritori was observed, that is, every word announced by him satisfied the conditions.

Input

Input is given from Standard Input in the following format:

```
$N$
$W_1$
$W_2$
$:$
$W_N$
```

Output

If every word announced by Takahashi satisfied the conditions, print `Yes`; otherwise, print `No`.

Constraints

-   $N$ is an integer satisfying $2 \leq N \leq 100$.
-   $W_i$ is a string of length between $1$ and $10$ (inclusive) consisting of lowercase English letters.

Sample 1 Input

4
hoge
english
hoge
enigma

Sample 1 Output

No

As hoge is announced multiple times, the rules of shiritori was not observed.

Sample 2 Input

9
basic
c
cpp
php
python
nadesico
ocaml
lua
assembly

Sample 2 Output

Yes

Sample 3 Input

8
a
aa
aaa
aaaa
aaaaa
aaaaaa
aaa
aaaaaaa

Sample 3 Output

No

3
abc
arc
agc

No

Source/Category