using System;
public class Program
{
public static void Main()
Random rnd = new Random();
int dice = rnd.Next(1, 7);
Console.WriteLine(dice);
}