• + 0 comments

    BigInteger fac = n;
    for(int i=1; i < n; i++){ fac *= i; } Console.WriteLine(fac);