# 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
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.
Program:
Output
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.
need an explanation for this answer? contact us directly to get an explanation for this answer