n=5
fact=1

for i in range(1,n+1):
    fact*=i

print("factorial =",fact)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: