public static int[,] matrizThreads = new int[100,100];
public static int resultadoThread1 = 0;
public static int resultadoThread2 = 100;
public static void Main (string[]args) {
Console.WriteLine ("Olá! Iremos sortear alguns números");
Random randNum = new Random();
for (int i = 0; i < 100; i++){
for(int j=0; j<100; j++){
matrizThreads [i,j] = randNum.Next(0,10);
Console.Write(matrizThreads[i,j]+"\t");