Exercise 5 - Due at 11:59:00 PM on Thursday, 09/09/2021 1. Read in 2 integers x and y from the user. Calculate the following, using the shorthand operators. Print the output after every statement. 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 truth values: a. y is smaller than x b. z is not 0 c. Is the value of x a 3 digit number? d. Are exactly two of the values positive? Sample Output: Enter the value of x: 10 Enter the value of y: 8 After (a), x = 18 After (b), y = -10 After (c), x = -180 After (d), y = -10 After (e), x = 18 Enter the value of x: 5 Enter the value of y: 13 Enter the value of z: -4 (a): 0 (b): 1 (c): 0 (d): 1 Here, 0 denotes false and 1 denotes true. Some compilers might print true and false instead of 0 and 1.