fork(2) 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,99):
  11. r*=i
  12. print(order(r))
  13. print(r)
Success #stdin #stdout 0.02s 9356KB
stdin
Standard input is empty
stdout
149
25977982938941930515945176761070443325092850981258133993315252362474391176210383043658995147728530422794328291965962468114563072000000000000000000000