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

cal_fact(5)
    
    
    

Embed on website

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