fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Random r = new Random();
  8.  
  9. int n = Convert.ToInt32(Console.ReadLine());
  10.  
  11. int max = Convert.ToInt32(Console.ReadLine());
  12.  
  13. for (int i = 0; i < n; i++)
  14. {
  15. Console.WriteLine(r.Next(max));
  16. }
  17. }
  18. }
Success #stdin #stdout 0.03s 33960KB
stdin
10
9001
stdout
1115
7645
32
4125
3930
3302
7101
2754
5323
3552