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