public static void Main()
Console.WriteLine("Type in a positive integer and press enter");
string number = Console.ReadLine();
if(ulong.TryParse(number, out fact))
{Console.WriteLine("Please enter a smaller value");
for(ulong i = 1; i<=number; i++)
Console.WriteLine(nnumber + " ! = " + fact);
Console.WriteLine("Would you like to run the program again? y/n");
string choice = Console.ReadLine();
if (choice == "y" || choice == "Y")