using System.Collections.Generic;
public class AlphabetDice {
private Random rnd= new Random();
public AlphabetDice (int seed, int num)
int x = rnd.Next(1,numOfsides+1);
public static void Main()
AlphabetDice d = new AlphabetDice(100,4);
Console.WriteLine(d.Sides);
Console.WriteLine (d.Next());