Exercise 8 - Due at 11:59:00 PM on 09/16/2021 There are 2 problems here, with multiple sample runs shown for each. Both can be solved in the same program. Please turn in 1 program through Canvas. 1. Write a C++ program to read an integer from the user and determine if it is a multiple of 7, 12 or both. Sample Runs (the program was run 4 times): a. Enter a number: 14 The number is a mutiple of 7 b. Enter a number: 84 The number is a multiple of both 7 and 12 c. Enter a number: 32 The number is not a multiple of either 7 or 12 d. Enter a number: 48 The number is a multiple of 12 2. Write a program to determine if a given year is a leap year. By definition, a leap year is a year that is a multiple of 4, unless it is a century year, in which case, it should be a multiple of 400. Sample Runs (the program was run 4 times) a. Enter a year: 2003 2003 is not a leap year. b. Enter a year: 2020 2020 is a leap year. c. Enter a year: 2000 2000 is a leap year. d. 1800 1800 is not a leap year.