Exercise 4 - 01/24/2017 1. Read in 2 integers x and y from the user. Print the following, using the shorthand operators. Use separate cout statements. Don't cascade output. a. x=x+y b. y=y-x c. x=x*y d. y=y%x e. x=x/y 2. Read in 3 integers, x, y and z. Use output cascading (one cout statement) to print the following: a. x++ b. ++y c. (x>y) d. (z!=0) e. x=x/z