using System;
public class Program
{
public static void Main()
Random rndgen = new Random();
int[] tomb = new int[20];
for (int i =0; i <tomb.Length; i++)
tomb[i] = rndgen.Next(0,101);
Console.WriteLine(tomb[i]);
}