Write a program which asks the user to enter an integer and then by using augmented assignment statements, display the results as per the output
Please enter the first integer: 5
Please enter the second integer: 4
5 + 4 is 9
5 - 4 is 1
5 * 4 is 20
5 / 4 is 1.25