using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
public const int N = 20;
static void Main(string[] args)
{
Random rnd = new Random();
for (int i = 0; i < N; i++)
Console.WriteLine(rnd.Next(10000000, 99999999));
}
}
}
/*
run:
21083930
28240929
48407816
62431685
89228284
75546094
79392405
70672283
45961797
60612180
76946228
79703064
88063854
85836410
53190327
35537343
65927449
99029785
62062073
96963913
*/