#abc358a. A - Welcome to AtCoder Land
A - Welcome to AtCoder Land
Score : points
问题陈述
高桥正前往AtCoder Land。他面前有一个指示牌,他想确定它是否写着AtCoder Land。
你将得到两个由空格分隔的字符串和。确定是否 AtCoder 且 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 and separated by a space. Determine whether AtCoder and Land.
Constraints
- and are strings consisting of uppercase and lowercase English letters, with lengths between and , inclusive.
Input
The input is given from Standard Input in the following format:
Output
If AtCoder and Land, print Yes; otherwise, print No.
Sample Input 1
AtCoder Land
Sample Output 1
Yes
AtCoder and Land.
Sample Input 2
CodeQUEEN Land
Sample Output 2
No
is not AtCoder.
Sample Input 3
aTcodeR lANd
Sample Output 3
No
Uppercase and lowercase letters are distinguished.