using System.Collections.Generic;
private Random r=new Random();
public PrimeDice(int seed, int s){
List<int> primelist=new List<int>();
while(primelist.Count<sides){
for (int x = 2; x <= Math.Sqrt(size); x++)
public static void Main()
PrimeDice d = new PrimeDice(999,4);
Console.WriteLine(d.Sides);
Console.WriteLine(d.Next());