--[[Write the program to collect the values - mass of an object and acceleration
in two variables and display the force--]]
Mass = io.read('*n')
Acc = io.read('*n')
Force = Mass*Acc
print('The mass is', Mass)
print('The acceleration is', Acc)
print('The force is', Force)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: