using System;
public class Program
{
public static void Main()
int rollNum = 1; // Change the value of 'rollNum' to change the number of rolls the computer will make
Random rnd = new Random();
for (int i = 0; i < rollNum; i++)
int face = rnd.Next(6);
Console.WriteLine(face + 1);
}