Given a text T and a forbidden word A, remove occurrences of A by repeating the following procedure.
A, stop.A in the current text.A, stop.A in the current text.Write a program that prints the text remaining after the whole procedure finishes.
The first line contains the word A. The second line contains the text T.
Both A and T consist only of lowercase English letters. The length of A is at most 25, and the length of T is at most 300,000.
Print the text remaining after all censorship steps are complete.