#abc358a. A - Welcome to AtCoder Land

A - Welcome to AtCoder Land

Score : 100100 points

问题陈述

高桥正前往AtCoder Land。他面前有一个指示牌,他想确定它是否写着AtCoder Land。

你将得到两个由空格分隔的字符串SSTT。确定是否S=S= AtCoderT=T= Land

以上为大语言模型 kimi 翻译,仅供参考。

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 SS and TT separated by a space. Determine whether S=S= AtCoder and T=T= Land.

Constraints

  • SS and TT are strings consisting of uppercase and lowercase English letters, with lengths between 11 and 1010, inclusive.

Input

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

SS TT

Output

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

Sample Input 1

AtCoder Land

Sample Output 1

Yes

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

Sample Input 2

CodeQUEEN Land

Sample Output 2

No

SS is not AtCoder.

Sample Input 3

aTcodeR lANd

Sample Output 3

No

Uppercase and lowercase letters are distinguished.