- Time limit: 1.00 s
- Memory limit: 512 MB
Maija is on a deadline and she is frantically writing an essay. She notices that she has made a typo, but to her horror she realizes that her backspace key is broken. There is no time to start fixing the keyboard, so Maija has to fix her text by adding more letters. In her mind, text is what she wants to write while text is what she currently has. Figure out whether Maija can still fix her essay by typing more characters to her text. Note that she can insert the characters anywhere in the text.
Input
The first line and the second line contain a single string and , respectively.
Output
Print "Yes" if it is possible to obtain text by inserting zero or more characters to text and "No" otherwise.
Constraints
- and only contain lowercase Latin letters
Example 1
Input:
ithinktheromanemperormaximusminimuswasperttymedium ithinktheromanemperormaximusminisum
Output:
Yes
Example 2
Input:
a aa
Output:
No
Example 3
Input:
abcd e
Output:
No