import math d = 800 # the distance g = 32.2 # gravitational constant in ft/sec**2 time = math.sqrt(2 * d / g) print(time, 's')