using System; public class Test { public static void Main() { Random r = new Random(); int n = Convert.ToInt32(Console.ReadLine()); int max = Convert.ToInt32(Console.ReadLine()); for (int i = 0; i < n; i++) { Console.WriteLine(r.Next(max)); } } }