using System;
public class Program
{
public static void Main()
int[] lottery = new int[6];
Random r = new Random(); /*取隨機號碼*/
int a = r.Next(49);
Console.WriteLine(a);
}