#include "iostream"
#include "string"
#include "algorithm"
using namespace std;
bool IsSubstring (string s,string t)
{
char *it;
int i;
int x=s.length();
it=t.begin();
for(i=0;i<x;i++)
{
it=(find(it,t.end(),s[i]));
if(it==t.end())
return false;
}
return true;
}
int main()
{
string s,t;
while(cin>>s>>t)
{
if(IsSubstring(s,t))
cout<<"yes"<<endl;
else
cout<<"no"<<endl;
}
return 0;
}