#factorial of n integer a=int(input('Enter a number :')) fact=1 for i in range(1,n+1): fact*=i print('Factorial of',a,'is',fact)