10 lines
147 B
Python
10 lines
147 B
Python
import sys
|
|
sys.path.append('..')
|
|
import harness
|
|
|
|
def proc (mod) :
|
|
x = mod.H()
|
|
for i in range(10000000) :
|
|
x += i
|
|
|
|
harness.run(proc)
|