using System;
public class Program
{
public static void Main()
Random r = new Random();
int n = 100;
int[] t = new int[n];
for (int i = 0; i < n; i++)
t[i] = r.Next(1, 101 > ;
Console.Write(t[i] + " ");
}