#T501. 字符串的查找删除

字符串的查找删除

Description

Given a short string (without spaces), and then several strings, delete all occurrences of the short string in these strings.

Input Format

The input consists of only one test case.

Enter a short string (without spaces), followed by several strings until the end of the file.

Output Format

Delete all occurrences of the short string (case-insensitive) and remove spaces, then output the result.

```input1 in #include int main() {

printf(" Hi "); }

```output1
#clude
tma()
{

prtf("Hi");
}

Hint

Note: Remove all occurrences of In, IN, iN, in from the string.

Source

CodesOnline