using System;
public class Program
{
public static void Main()
Random r = new Random();
var roll = r.Next(1, 7);
Console.WriteLine("{0}",roll);
}