//#include "stdafx.h"//In VC++6.0, with this line, please...
#include <string>
#include <iostream>
using
namespace
std;
void
del(string &str,string substr){
int
k,l=substr.length();
//得到子字符串長度
while
(1){
//這個循環保證最後str中再也不有子串
if
((k=str.find(substr.c_str()))<0)
//若未找到子串則結束
break
;
str.erase(k,l);
//將找到的子串刪除
}
}
int
main(
void
){
//測試主函數
string a,b;
cin >> a >> b;
del(a,b);
//
cout << a << endl;
return
0;
}