Console.WriteLine("Gerador de Números da Mega Sena!");
Random dice = new Random();
int roll1 = dice.Next(1, 61);
int roll2 = dice.Next(1, 61);
int roll3 = dice.Next(1, 61);
int roll4 = dice.Next(1, 61);
int roll5 = dice.Next(1, 61);
int roll6 = dice.Next(1, 61);
if ((roll1 != roll2) && (roll2 != roll3) && (roll3 != roll4) && (roll4 != roll5) && (roll5 != roll6))
Console.WriteLine($"Os seus números da sorte são: {roll1}, {roll2}, {roll3}, {roll4}, {roll5}, {roll6}. \nBoa sorte!");
int roll7 = dice.Next(1, 61);
int roll8 = dice.Next(1, 61);
int roll9 = dice.Next(1, 61);
int roll10 = dice.Next(1, 61);
int roll11 = dice.Next(1, 61);
int roll12 = dice.Next(1, 61);
Console.WriteLine($"(2)Os seus números da sorte são: {roll7}, {roll8}, {roll9}, {roll10}, {roll11}, {roll12}. \nBoa sorte!");