public static void Main(string[] args)
Random random = new Random();
int die1 = random.Next(1, 7);
int die2 = random.Next(1, 7);
Console.Write("Do you want to use hints? (y/n) ");
string answer = Console.ReadLine();
if (answer.ToLower() == "y")
Console.WriteLine("The total sum of the dice is higher than 3.");
else if (die1 + die2 == 3)
Console.WriteLine("The total sum of the dice is higher than 2.");
Console.WriteLine("The total sum of the dice is lower than 3.");
Console.WriteLine("Dice rolled! Guess the outcome of each die:");
Console.Write("Die 1: ");
int guess1 = int.Parse(Console.ReadLine());
Console.Write("Die 2: ");
int guess2 = int.Parse(Console.ReadLine());
Console.WriteLine("You guessed the outcome of die 1 correctly!");
points += useHints ? 3 : 6;
Console.WriteLine("Wrong guess for die 1. The correct answer was {0}.", die1);
Console.WriteLine("You guessed the outcome of die 2 correctly!");
points += useHints ? 3 : 6;
Console.WriteLine("Wrong guess for die 2. The correct answer was {0}.", die2);
Console.WriteLine("You got {0} points.", points);