Problem1273--字符串的查找删除

1273: 字符串的查找删除

Time Limit: 1 Sec  Memory Limit: 32 MB
Submit: 10  Solved: 3
[Submit] [Status] [Web Board] [Creator:]

Description

给定一个短字符串(不含空格),再给定若干字符串,在这些字符串中删除所含有的短字符串。

Input

输入只有1组数据。
输入一个短字符串(不含空格),再输入若干字符串直到文件结束为止。

Output

删除输入的短字符串(不区分大小写)并去掉空格,输出。

Sample Input Copy

in
#include 
int main()
{

printf(" Hi ");
}

Sample Output Copy

#clude
tma()
{

prtf("Hi");
}

HINT

注:将字符串中的In、IN、iN、in删除。