9266: ABC295 —— A - Probably English
[Creator : ]
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`.
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$
```
The input is given from Standard Input in the following format:
```
$N$
$W_1$ $W_2$ $\dots$ $W_N$
```
Output
### Output
Print the answer.
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.
- $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.