public static void Main()
Console.WriteLine("Factorial Calculator");
Console.WriteLine("What is the number you wish to find the factorial of?");
int numchosen = Convert.ToInt32(Console.ReadLine());
fv= factorial(numchosen);
Console.WriteLine("The Value of "+numchosen+" is " +fv);
public static int factorial (int n){