Python Program to add two numbers
In this program, You will learn how to add two numbers in Python.
20 = 10 + 10
30 = 10 + 20
Example: How to add two numbers in Python.
x = int(input("Enter first number:"))
y = int(input("Enter second number:"))
z = x + y;
print("Addition of two numbers:", z)
Output:
Enter first number:10
Enter second number:20
Addition of two numbers: 30