Home »
Python »
Python Programs
Python | Input two integers and find their addition
Here, we are implementing two number addition program in Python, we will read two integer values from the user and print their addition/sum.
By Pankaj Singh Last updated : April 08, 2023
Adding Two Given Integers
The task is to input two integer numbers, and find their addition/sum in Python.
To add two integers, input the integer values into two variables, perform the addition operation using addition operator (+), assign the result to a variable and print it.
Sample Input/Output
Input:
Enter A: 100
Enter B: 200
Output:
Sum: 300
Python program for adding two given integers
# input two numbers: value of a and b
a = int(input("Enter A: "))
b = int(input("Enter B: "))
# find sum of a and b and assign to c
c = a+b
# print sum (c)
print("Sum: ",c)
Output
Enter A: 100
Enter B: 200
Sum: 300
"Adding Two Integers" - Code Explanation
Here, we are reading two values and assigning them in variable a and b - to input the value, we are using input() function, by passing the message to display to the user. Method input() returns a string value, and we are converting the input string value to the integer by using int() method.
After that, we are calculating the sum of a and b and assigning it to the variable c. And then, printing the value of c which is the sum of two input integers.
Python Basic Programs »