using System;
public class Lottery
{
public static void Main()
Random rnd = new Random();
for (int j = 0; j < 5 //tickets
; j++)
Console.WriteLine(rnd.Next(1, 3)); //chance
Console.WriteLine("--");
}