spacepaste

  1.  
  2. def f(height):
  3. for j in range(200):
  4. total = 0
  5. c = 0
  6. while c < 3:
  7. h = height
  8. while h > 0:
  9. h -= 1
  10. total += 1
  11. c += 1
  12. print total
  13. f(5)
  14.