void exibirPromocoes(Set<int> semana, Set<int> mes) {
Set<int> todasAsPromocoes = semana.union(mes);
print("Os produtos em promoção são: $todasAsPromocoes");
}
void main() {
Set<int> produtosSemana = {1, 2, 3, 4};
Set<int> produtosMes = {3, 4, 5, 6};
exibirPromocoes(produtosSemana,produtosMes);
}