public static void Main()
Console.WriteLine("What number would like to know the factorial of?");
ulong ans = ulong.Parse(Console.ReadLine());
Console.WriteLine("You must enter a number less than 100");
for(ulong i = 1; i<= ans; i++)
Console.WriteLine(ans + "= " + fact);
Console.WriteLine("Would like to re-enter a number?y/n");
string choice = Console.ReadLine();