Problem E
Homework
Anthony has two multiple choice assignments to hand in
today. The answer to each assignment is a string, where the
But instead of handing in two strings, Anthony only hands in a single string. He claims he answered every question correctly but his little sister Cora merged his two strings into a single string. Moreover, Cora merged his string in such a way that the following conditions are satisfied:
-
For any two integers
(where is the length of ), the index of in is less than the index of in -
For any two integers
, the index of in is less than the index of in
Can you help Anthony’s teacher verify whether Anthony’s claim is possible?
Input
The first line contains a single string
The next two lines contain strings
All the strings consists of only lowercase English letters.
Output
If Anthony’s claim is possible, print “yes” (without quotes). Otherwise, print “no” (without quotes).
Sample Input 1 | Sample Output 1 |
---|---|
aabcad aba acd |
yes |
Sample Input 2 | Sample Output 2 |
---|---|
aabcad acb aad |
no |