using System;
public class Program
{
public static void Main()
Console.WriteLine("rain probability");
int day1,day2,day3;
Random rG = new Random();
int sum;
int tally1=0;
int tally2=0;
int tally3=0;
for (int count = 0; count < 10000 ; count++){ //creates a loop that will roll the dice the specified amount of times above
day1 = rG.Next(1,11);
day2 = rG.Next(1,11);
day3 = rG.Next(1,11);
sum = day1+day2+day3;
if (day1<=7)
tally1++;
}
Console.WriteLine("Day 1: ");