fork download
  1. def order(num):
  2. def w_order(n,c):
  3. if n<1:
  4. return c
  5. c+=1
  6. return w_order(n/10,c)
  7. return w_order(num,0)
  8.  
  9. r=1
  10. for i in range(10,100):
  11. r*=i
  12. print(order(r))
  13. print(r)
Success #stdin #stdout 0.02s 9132KB
stdin
Standard input is empty
stdout
151
2571820310955251121078572499345973889184192247144555265338209983884964726444827921322240519625124511856638500904630284343341744128000000000000000000000