Accept two float input from the user, add both numbers and display the result. To convert an input
string value into float use float() function.
a = float(input("The first number: ")) b = float(input("The second number: ")) print("Result:", a+b)