#abc167a. [abc167_a]Registration

[abc167_a]Registration

Problem Statement

Takahashi wants to be a member of some web service.

He tried to register himself with the ID SS, 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 SS as his ID.

He is now trying to register with the ID TT. Determine whether this string satisfies the property above.

Constraints

  • SS and TT are strings consisting of lowercase English letters.
  • 1leqSleq101 \\leq |S| \\leq 10
  • T=S+1|T| = |S| + 1

Input

Input is given from Standard Input in the following format:

SS TT

Output

If TT satisfies the property in Problem Statement, print Yes; otherwise, print No.


Sample Input 1

chokudai
chokudaiz

Sample Output 1

Yes

chokudaiz can be obtained by appending z at the end of chokudai.


Sample Input 2

snuke
snekee

Sample Output 2

No

snekee cannot be obtained by appending one character at the end of snuke.


Sample Input 3

a
aa

Sample Output 3

Yes