public static void Main()
Random r1 = new Random();
Random r2 = new Random();
Random r3 = new Random();
int selector = r1.Next(0,1);
int first = r1.Next(0,10);
int second = r1.Next(0,10);
Console.WriteLine(first + " * " + second + " " + (first*second));