fork(1) download
  1. n = 1
  2. numero = 5
  3. for fatorial in range(numero, 1, -1):
  4. n = n * fatorial
  5. print(n)
Success #stdin #stdout 0.01s 28384KB
stdin
Standard input is empty
stdout
120