n = 1
numero = 5
for fatorial in range(numero, 1, -1):
    n = n * fatorial
print(n)

#https://pt.stackoverflow.com/q/231355/101