#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
string str1;
char ch;
getline(cin,str1);//如果用cin的话就只能通过90%
cin>>ch;
for(int i=0;i<str1.length();i++)
{
if(str1[i]!=ch)
cout<<str1[i];
}
return 0;
}
0 回复
0 转发
0 喜欢
1 阅读



