write a python program to input time and speed from user and calculate and print the distance
Answers
Answered by
0
Answer:
v=34;
t=8;
s=v*t;
print(s)
Explanation:
v=velocity
s=Distance
t=time
Similar questions