# Usando chaves A = {1, 2, 3, 4} B = {3, 4, 5, 6, 7} # Usando a função set() A = set([1, 2, 3, 4]) B = set([3, 4, 5, 6, 7]) print(A) print(B)