100 atcoder#ABC167A. [ABC167A] Registration
[ABC167A] Registration
Score : points
Problem Statement
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.
Constraints
- and are strings consisting of lowercase English letters.
Input
Input is given from Standard Input in the following format:
Output
If satisfies the property in Problem Statement, print Yes
; otherwise, print No
.
chokudai
chokudaiz
Yes
chokudaiz
can be obtained by appending z
at the end of chokudai
.
snuke
snekee
No
snekee
cannot be obtained by appending one character at the end of snuke
.
a
aa
Yes