spacepaste

  1.  
  2. a = [0.] * 10000000
  3. b = [0.] * 10000000
  4. def f():
  5. result = 0.
  6. for i in range(0,10000000):
  7. result += a[i]*b[i]
  8. print(result)
  9. f()
  10.