Monday, December 27, 2021

Addition and Subtraction of Two Numbers in Python in Linux

A simple program to ask the user to give two numbers and then the program will add and subtract the two given numbers by the user 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 in 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

# add_sum.py
# Addition and Subtraction of Two Numbers in Python in Linux
# Jake Rodriguez Pomperada, MAED-IT, MIT
# www.jakerpomperada.com and www.jakerpomperada.blogspot.com
# Globe Number : 09173084360
# Bacolod City, Negros Occidental Philippines.

print("\n")
print("\tAddition and Subtraction of Two Numbers in Python in Linux")
print("\n")
num1 = int(input("\tEnter First Number   : "))
num2 = int(input("\tEnter Second Number  : "))

# Adding two numbers
sum = (num1 + num2)

# Difference of two numbers
diff = (num1 - num2)
 
# printing values
print("\n")
print("\tSum of {0} and {1} is {2}" .format(num1, num2, sum))
print("\tDifference between {0} and {1} is {2}" .format(num1, num2, diff))

print("\n")
print("\tEnd of Program")
print("\n")


No comments:

Post a Comment