using System;
class Program
{
    static void Main()
    {
        Random rand = new Random(); 
        for (int i = 1; i <= 20; i++) { 
            Console.WriteLine(rand.Next(10000, 99999)); 
        } 
    }
}
/*
run:
76803
44142
76214
59831
31158
99650
15789
40668
41552
95991
98210
36721
64756
68948
96658
10203
89294
31367
40441
73487
*/