fork download
  1. import math
  2. fact = lambda f: int(round(math.exp(sum([math.log(a) for a in range(1,f+1)]))))
  3. print fact(6)
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
720