using System;
public class Problem2
{
public static void Main()
Random dice = new Random(); //I just use system time to be the seed in this case. There are many ways to generate random seeds.
Console.WriteLine(dice.Next(1, 7));
}