Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 422 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 422 Bytes

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