equipe_a = {"planejar reunião", "revisar documento", "testar sistema"}
equipe_b = {"testar sistema", "implementar funcionalidade", "corrigir bug"}
uniao_tarefas = equipe_a.union(equipe_b)
remover_tarefa = input("Digite a tarefa que deseja remover: ").lower()
if remover_tarefa in uniao_tarefas:
uniao_tarefas.remove(remover_tarefa)
print(f"Tarefa {remover_tarefa} removida com sucesso.")
print(f"\nTarefas finais:\n{"\n".join(f"{t} - {f}" for t, f in enumerate(uniao_tarefas, 1))}")