示例#1
0
        static void Main(string[] args)
        {
            BigFactorial test = new BigFactorial();

            test.x = int.Parse(Console.ReadLine());
            test.CalculateFactorial();
        }