#include<iostream>
using namespace std;
int main()
{
string a,b;
cin>>a>>b;
bool st[200]={0}; //ASCII 0-127
b+='#'; //防止越界
for(int i=0,j=0;i<a.size();i++)
{
char x=toupper(a[i]),y=toupper(b[j]);
if(x==y) j++;
else
{
if(!st[x]) cout<<x,st[x]=true;
}
}
return 0;
}