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