PAT 甲级 1050 String Subtraction
#include <bits/stdc++.h>
using namespace std;
int main()
{
#ifdef LOCAL
freopen("input.txt", "r", stdin);
#endif
string s1, s2;
getline(cin, s1);
getline(cin, s2);
vector<bool> enable(256, true);
for (auto& i : s2) {
enable[i] = false;
}
for (auto& i : s1) {
if (enable[i])
cout << i;
}
}