I am doing some calculation work and I have something that works, but I am having trouble making it run multiple times. I would like to run a bunch of different values but at the moment it only runs once in the console and kicks you out. How can I change this to run until the user stops the program. Thanks for any help
```
import math
def main():
try:
bump=float(input('\nbump height? '))
tire=float(input('tire diameter in inches? '))
speed=float(input('vehicle speed in miles per hour? '))
except ValueError:
print('\nyou entered an invalid input')
else:
print('the hub speed is ' + repr(round((calculatehubspeed(bump, tire, speed)))) + ' inches per second')
def calculatehubspeed(bump, tire, speed):
answer = bump/(math.sqrt((tire/2)**2-((tire/2-bump)**2))/(speed*17.6))
return(answer)
if name == 'main':
main()
```