#Python program to find the sum of the input number
Number1=float(input("enter Number 1:"))
# to take the number1 as an input by the user.
Number2=float(input("enter Number 2:"))
# to take the number2 as an input by the user.
Sum=Number1+Number2
# formula for the calculation of sum
print(Sum)
# print sum of two numbers.
Study more about Python at Python Class 10