Monday, October 25, 2021

Addition and Product of Two Numbers in Python

 A simple program to ask the user to give two numbers and then it will compute the sum, and product of two numbers using Python programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.






Program Listing

print()
print("\tAddition and Product of Two Numbers in Python")
print()
num1 = int(input('Enter first number: '))
num2 = int(input('Enter second number: '))

sum = (num1 + num2)
product = (num1 * num2)

print()
print('The sum of {0} and {1} is {2}.'.format(num1, num2, sum))
print()
print('The product of {0} and {1} is {2}.'.format(num1, num2, product))

No comments:

Post a Comment