#!/usr/bin/python
import time

started = time.time() #specifically placed <em>after</em> imports

count = 0

while count < 100000000:
    count += 1

print("Done")
print("python took " +str(time.time() - started))
        
#Required 9.1 seconds
