public static void Main()
Console.WriteLine("Welcome to Lucky 14's");
Console.WriteLine("Each roll will consist of rolling 4 six-sided dice.");
Console.WriteLine("How many Lucky 14's do you wish to obtain?");
string sLuckyAmount = Console.ReadLine();
iLuckyAmount = Convert.ToInt32(sLuckyAmount);
Console.WriteLine("Invalid input!");
Console.WriteLine("Invalid input!");
Random rG = new Random();
int dice1 = rG.Next(1, 7);
int dice2 = rG.Next(1, 7);
int dice3 = rG.Next(1, 7);
int dice4 = rG.Next(1, 7);
int sum = dice1 + dice2 + dice3 + dice4;
} while(luckyObtained != iLuckyAmount);
Console.WriteLine("The odds of rolling a 14 is 1 in " + tosses / luckyObtained + ".");
Console.WriteLine("Would you like to roll again? (y/n)");
string answer = Console.ReadLine();
if (answer.Substring(0, 1).ToLower() == "y") {
Console.WriteLine("Thank you for playing.");