Showing posts with label Python program to add two numbers.. Show all posts
Showing posts with label Python program to add two numbers.. Show all posts

Friday, July 24, 2020

Python program to add two numbers.


number1 = 5
number2 = 5
Add = number1 + number2 
print("Addition of : {0} and {1} is {2}" .format(number1, number2, Add)) 


OUTPUT

Addition of : 5 and 5 is 10