Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- int main() {
- string sub, str;
- cin >> sub >> str;
- while (str.find(sub) != -1) {
- str.erase(str.find(sub), sub.length());
- }
- cout << str << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement