equipeA = set(input("\nDigite as tarefas da equipe A: ").lower().strip().split(", "))
equipeB = set(input("Digite as tarefas da equipe B: ").lower().strip().split(", "))
exclusao = input("Digite as tarefas a serem excluídas: ").lower()
total = equipeA.union(equipeB)
total.remove(exclusao)
print("\nLista Refeita:", total)