Problem10881--ABC358 - A - Welcome to AtCoder Land

10881: ABC358 - A - Welcome to AtCoder Land

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

Description

Problem Statement

Takahashi is heading to AtCoder Land. There is a signboard in front of him, and he wants to determine whether it says AtCoder Land.

You are given two strings $S$ and $T$ separated by a space. Determine whether $S=$ AtCoder and $T=$ Land.

Input

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

```
$S$ $T$
```

Output

If $S=$ AtCoder and $T=$ Land, print Yes; otherwise, print No.

Constraints

-   $S$ and $T$ are strings consisting of uppercase and lowercase English letters, with lengths between $1$ and $10$, inclusive.

Sample 1 Input

AtCoder Land

Sample 1 Output

Yes

$S=$ AtCoder and $T=$ Land.

Sample 2 Input

CodeQUEEN Land

Sample 2 Output

No

$S$ is not AtCoder.

Sample 3 Input

aTcodeR lANd

Sample 3 Output

No
Uppercase and lowercase letters are distinguished.

Source/Category