spacepaste

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