1import bench
2
3
4def test(num):
5    for i in range(num):
6        pass
7
8
9bench.run(test)
10