n=int(input("entrez n :"))
produit=1
for i in range(1, n+1, 1):
	produit=produit*i

print("produit=",produit)
