#write a program that reads two integers and finds #their sum, product, difference, results of division, #integer division #and remainder #Part 1: Input #In this program the input is: TWO INTEGERS a = int(input("Please enter first INTEGER number ")) b = int(input("Please enter second INTEGER number ")) #Part 2: Calculations sum = a + b product = a * b difference1 = a - b difference2 = b - a division = a/b int_division = a//b remainder = a%b #Part 3: Output results print("Sum=", sum,"\nProduct=",product) print("Difference1=", difference1) print("Difference2=", difference2) print("Division=", division) print("Integer_Division=", int_division) print("Remainder=", remainder)