Source code -
# Simple program made by Linux & Windows Tech , Plz like, share and subscribe to the channel for more videos like this
number1 = input("Enter the first number: ")
number2 = input("Enter the second number: ")
sum = float(number1) + float(number2)
print("The sum of {0} and {1} is {2} " . format(number1, number2, sum))
print("\nThankyou for using a program made by Linux and Windows Tech")