public static void Main()
Console.WriteLine("How many sides on the dice?:");
sides = int.Parse(Console.ReadLine());
Console.WriteLine("How many rolls? - ");
rolls = int.Parse(Console.ReadLine());
Random rand = new Random();
rint = rand.Next(1, sides);
for (int loop = 0; loop < rolls; loop++)
int n = rand.Next(1, sides);
rint = n >= rint ? n + 1 : n;