Answer:
See code in the explanation
Explanation:
The following code is written in Python 3:
#!/usr/bin/env python3
velocity = float(input('What is the speed of the vehicle in mph\n'))
traveled_time = int(input('How many hours has it traveled\n'))
print('Hour Distance Traveled')
for i in range(1, traveled_time+1):
print(f"{i} {i * velocity}", end =" ")