spacepaste

  1.  
  2. import thread
  3. def f():
  4. total = 0
  5. for i in range(15000000):
  6. total += i
  7. print total
  8. for j in range(2):
  9. thread.start_new_thread(f, ())
  10. raw_input()
  11.