Program description:

Python is a very simple and easy to learn programming language in comparison to C. In python we have to do very less code in order to obtain the same output. Here is the python code to add to numbers.

Source Code:

a=int(input("Enter the First Number:") )
b=int(input("Enter the Second Number:"))
sum=a+b
print("The sum of two numbers you entered is",sum);
 

OUTPUT:

If you have any query regarding the program, feel free to contact us😊😊