fork(1) download
  1. n = 37
  2. d = n % 10
  3. n = (n - n % 10) // 10
  4. c = n % 10
  5. n = (n - n % 10) // 10
  6. b = n % 10
  7. n = (n - n % 10) // 10
  8. a = n
  9. if d != 0:
  10. print(str(d) * c)
  11.  
  12.  
Success #stdin #stdout 0.02s 9264KB
stdin
Standard input is empty
stdout
777