Problem9266--ABC295 —— A - Probably English

9266: ABC295 —— A - Probably English

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

Description

### Problem Statement

You are given $N$ strings $W_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`.

Input

### Input

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

```
$N$
$W_1$ $W_2$ $\dots$ $W_N$
```

Output

### Output

Print the answer.

Constraints

### Constraints

-   $N$ is an integer between $1$ and $100$, inclusive.
-   $1 \le |W_i| \le 50$ ($|W_i|$ is the length of $W_i$.)
-   $W_i$ consists of lowercase English letters.

Sample 1 Input

10
in that case you should print yes and not no

Sample 1 Output

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

Sample 2 Input

10
in diesem fall sollten sie no und nicht yes ausgeben

Sample 2 Output

No
None of the strings $W_i$ equals any of and, not, that, the, and you.

Source/Category