#include <iostream>
#include <map>
using namespace std;
int main(){
string s1,s2,res;
getline(cin,s1);
getline(cin,s2);//s1,s2可能有空格 cin无法识别因此用getline 注意pat不能用gets函数
map<char,int> hashtable;//哈希表 空间换时间
for(auto c:s2){
hashtable[c]++;
}
for(auto c:s1){//遍历s1
if(hashtable[c]!=0){//如果当前字符为s2中的字符 直接跳过
continue;
}
res+=c;
}
cout<<res;
return 0;
}