#include <cwchar>
#include <iostream>
#include<string>
using namespace std;

int main() {
    string s;
    char c;
    while (getline(cin,s)) { // 注意 while 处理多个 case
        cin>>c;
        for(char w:s){
            if(w!=c)putwchar(w);
        }
        cout<<endl;
    }
}
// 64 位输出请用 printf("%lld")