Problem Definition
Create a Python program to add two numbers and print the result, taking runtime input from the user.
Solution
- Take input from the user save them in variables
- Add the numbers and print the result
- End
Program
num1 = int(input("Enter first number: "))
num2 = int(input("Enter second number: "))
sum = num1 + num2
print("The Sum is", sum)
Runtime Test Cases
Enter first number: 2
Enter second number: 4
The Sum is 6
Explanation
The input()
function takes the input from the user however we need to convert the input to an integer using int()
method to perform mathematical operation i.e. addition(+).
This program simply takes two arbitrary input from the keyboard store them in two different variables later these numbers are added and stored in another variable sum which at the end gets printed out.
The post Python Program to Add Two Numbers appeared first on Django Central.
from Planet Python
via read more
No comments:
Post a Comment