The program should read two strings and remove from the first string all the letters that occur in the second string. Example: Let the strings be "chocolate" and "hollow", so the program should print "hlte". How to solve the problem using string knowledge? Pseudocode:
string1 = raw_input()
string2 = raw_input()
stringresultante = caracteres da string1 - caracteres da string2
print stringresultante