1import bench
2
3ITERS = 20000000
4
5
6def test(num):
7    i = 0
8    while i < ITERS:
9        i += 1
10
11
12bench.run(test)
13