2to3 bench
diff --git a/bench/runbench.py b/bench/runbench.py
index 2ebdc53..ac2cbb1 100644
--- a/bench/runbench.py
+++ b/bench/runbench.py
@@ -2,6 +2,7 @@
 """
     Runs the benchmarks
 """
+from __future__ import print_function
 import sys
 import os
 import re
@@ -30,13 +31,13 @@
 
 
 def main():
-    print '=' * 80
-    print 'Running benchmark for MarkupSafe'
-    print '-' * 80
+    print('=' * 80)
+    print('Running benchmark for MarkupSafe')
+    print('-' * 80)
     os.chdir(bench_directory)
     for bench in list_benchmarks():
         run_bench(bench)
-    print '-' * 80
+    print('-' * 80)
 
 
 if __name__ == '__main__':