Accept two strings as input and form a new string by removing from the second string every character that is present in the first string. Print this new string as output. You can assume that all input strings will be in lower case.
Input
Two lines: the first string on the first line, the second string on the second line.
Output
One line: the second string with all the characters that appear in the first string removed. The remaining characters keep their original order.
For example, if the first string is abc and the second string is abcdef, the
output is def.
Write a complete program: read the input with input() and print the result with print().
Input
abc
abcdef
Output
def