Answer:
See code in the explanation
Step-by-step 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\\'))
traveled_time = int(input('How many hours has it traveled\\'))
print('Hour Distance Traveled')
for i in range(1, traveled_time+1):
print(f"{i} {i * velocity}", end =" ")