public static void Main()
Console.WriteLine("Please enter a postive, whole number.");
string input = Console.ReadLine();
if (ulong.TryParse(input, out n))
for (ulong i = 1; i <= n; i++)
Console.WriteLine("" + n + "!= " + fact);
Console.WriteLine("the number you picked is too high");
Console.WriteLine("would you like to run the program again? y/n");
string choice = Console.ReadLine();
if (choice == "y" || choice == "y")
Console.WriteLine("Please make sure to enter a positive whole number");