#abc295a. [abc295_a]Probably English

[abc295_a]Probably English

Problem Statement

You are given NN strings W1,W2,dots,WNW_1,W_2,\\dots,W_N consisting of lowercase English letters.
If one or more of these strings equal and, not, that, the, or you, then print Yes; otherwise, print No.

Constraints

  • NN is an integer between 11 and 100100, inclusive.
  • 1leWile501 \\le |W_i| \\le 50 (Wi|W_i| is the length of WiW_i.)
  • WiW_i consists of lowercase English letters.

Input

The input is given from Standard Input in the following format:

NN W1W_1 W2W_2 dots\\dots WNW_N

Output

Print the answer.


Sample Input 1

10
in that case you should print yes and not no

Sample Output 1

Yes

We have, for instance, W4=W_4= you, so you should print Yes.


Sample Input 2

10
in diesem fall sollten sie no und nicht yes ausgeben

Sample Output 2

No

None of the strings WiW_i equals any of and, not, that, the, and you.