Addition of Two Numbers
In this post we are going to learn Sum of two numbers. by adding two numbers we can get the desired output.
Input:
5
10
Output:
15
Explanation:
value1=5
value2=10
adding two numbers 5+10 = 15.
Code:
a=int(input())
b=int(input())
print(a+b)
Note:
Hello Guys, Don't Stop Learning keep Going..............