#ABC167A. Registration
Registration
题目描述
Takahashi wants to be a member of some web service.
He tried to register himself with the ID , which turned out to be already used by another user.
Thus, he decides to register using a string obtained by appending one character at the end of as his ID.
He is now trying to register with the ID . Determine whether this string satisfies the property above.
高桥想成为某个网络服务的成员。
他尝试用 ID 注册,结果发现该 ID 已被另一个用户使用。
因此,他决定使用在 末尾添加一个字符得到的字符串作为自己的 ID 进行注册。
现在他正试图用 ID 注册。请判断该字符串是否满足上述属性。
输入格式
输入内容按以下格式标准输入:
输出格式
如果 满足问题陈述中的属性,打印 "是";否则,打印 "否"。
样例 #1
样例输入 #1
chokudai
chokudaiz
样例输出 #1
Yes
样例 #2
样例输入 #2
snuke
snekee
样例输出 #2
No
样例 #3
样例输入 #3
a
aa
样例输出 #3
Yes
说明
数据规模与约定
- 和 是由小写英文字母组成的字符串。
样例 解释
在 "chokudai "后面加上 "z "就可以得到 "chokudaiz"。
样例 解释
在 snuke
的末尾添加一个字符无法得到 snekee
。