滤字符


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

将某个字串中出现的一个特定的字符删去,然后输出新得到的字串。

Input

有两组测试数据:s,t(33≤t≤126),s为字串,t为字符。

Output

将s中出现的t删掉,然后在将删掉t后新得到的字串输出。如果串被删空,则输出NULL。

Sample

Input

eeidliecielpvu i
ecdssnepffnofdoenci e

Output

eedlecelpvu
cdssnpffnofdonci

Source: 徐伟俭


Comments

There are no comments at the moment.