Answer:
mass = float(input("Mass: "))
velocity = float(input("Velocity: "))
momentum = mass * velocity
print("The object's momentum is ", momentum)
Explanation:
*The code is in Python.
Ask the user to enter the mass and velocity. Since both of the values could be decimal numbers, cast them as float
Calculate the momentum using given information, multiply mass by velocity
Print the momentum as example output