--[[Write a program to store the distance and time in two variables and display the
speed--]]
d = io.read('*n')
t = io.read('*n')
speed = d/t
print('The speed covering',d,'kilometers in',t,'hours is',speed,'Kmph')
To embed this project on your website, copy the following code and paste it into your website's HTML: