public static void Main()
Console.WriteLine("Do you know the result of " + num01 + " divided by " + num02 + "?");
answer = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("You are right! Excelent work :)"); }
else if (answer >num01/num02) {
Console.WriteLine("You are wrong " + "\n The result is: " + num01/num02); }
else if (answer <num01/num02) {
Console.WriteLine("You are wrong " + "\n The result is: " + num01/num02); }