101670: [AtCoder]ABC167 A - Registration

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

Takahashi wants to be a member of some web service.

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

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

Constraints

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

Input

Input is given from Standard Input in the following format:

$S$
$T$

Output

If $T$ 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

Input

题意翻译

有两个字符串 $s$ 和 $t$ , $s$ 比 $t$ 少一个字符。求 $t$ 是否由 $s$ 的末尾添加 $1$ 个字符得到。如果是,输出Yes;否则输出No。

加入题单

算法标签: