Skip to content

Latest commit

 

History

History

P008

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Problem 008

Write a program to calculate Factorial of input numbers. Factorial of N is the product of all numbers less than equal to N.

Persian Description

برنامه ای بنویسید که فاکتوریل n را حساب کند. فاکتوریل حاصل ضرب تمام اعداد کوچکتر و مساوی n در همدیگر است

Sample Input/Output

Input:

5
6

Output:

120
720