import random

# Gera 6 números únicos de 1 a 50
numeros = sorted(random.sample(range(1, 51), 6))

# Gera 2 trevos únicos de 1 a 6
trevos = sorted(random.sample(range(1, 7), 2))

print("=== +MILIONÁRIA ===")
print("Números:", " ".join(f"{n:02d}" for n in numeros))
print("Trevos: ", " ".join(str(t) for t in trevos))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: