Given a set of elements and another set of unwanted elements, remove the unwanted elements.
There are two lines for the input, which are
e1 e2 e3 ... en <--- elements 1~n
u1 u2 ... um <---- unwanted elements 1~m
Note that
Hint: You can use an index to find an element in a list
elements = [1, 2, 3]
print(elements[1]) # 2
Print out a line of elements with unwanted elements removed, where each element are connected by a SPACE token (" ").
Note that there will be a new line default by python's print() function. If you are using python's print(), just ignore this line.