删除公共字符
题号:NC239114
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 32 M,其他语言64 M
64bit IO Format: %lld

题目描述

输入两个字符串,从第一字符串中删除第二个字符串中所有的字符。
例如:第一个字符串是"They are students.",第二个字符串是”aeiou"。删除之后的第一个字符串变成"Thy r stdnts."。
保证两个字符串的长度均不超过100。

输入描述:

输入两行,每行一个字符串。

输出描述:

输出删除后的字符串。
示例1

输入

复制
They are students. 
aeiou

输出

复制
Thy r stdnts.