public static void Main()
Console.WriteLine("How many times would you like to roll");
string input = Console.ReadLine();
if(decimal.TryParse(input, out number))
{Random r = new Random();
decimal count2 = 0, count3 = 0, count4= 0, count5 = 0, count6 = 0, count7 = 0, count8 = 0, count9 = 0, count10 = 0, count11 = 0, count12 = 0;
for(decimal i = 1; i<=number; i ++)
{decimal roll = r.Next(2, 13);
decimal per2 = count2/number*100M;
decimal per3 = count3/number*100M;
decimal per4 = count4/number*100M;
decimal per5 = count5/number*100M;
decimal per6 = count6/number*100M;
decimal per7 = count7/number*100M;
decimal per8 = count8/number*100M;
decimal per9 = count9/number*100M;
decimal per10 = count10/number*100M;
decimal per11 = count11/number*100M;
decimal per12 = count12/number*100M;
Console.WriteLine(per2.ToString("##.##") + "% of the time.");
Console.WriteLine(per3.ToString("##.##") + "% of the time.");
Console.WriteLine(per4.ToString("##.##") + "% of the time.");
Console.WriteLine(per5.ToString("##.##") + "% of the time.");
Console.WriteLine(per6.ToString("##.##") + "% of the time.");
Console.WriteLine(per7.ToString("##.##") + "% of the time.");
Console.WriteLine(per8.ToString("##.##") + "% of the time.");
Console.WriteLine(per9.ToString("##.##") + "% of the time.");
Console.WriteLine(per10.ToString("##.##") + "% of the time.");
Console.WriteLine(per11.ToString("##.##") + "% of the time.");
Console.WriteLine(per12.ToString("##.##") + "% of the time.");
Console.WriteLine("Would you like to run the program again?");
string choice = Console.ReadLine();
if (choice == "Y" || choice == "y")