In C++, write a program that computes the integer division of two integers. It should prompt the user for two integer values, one for the numerator and one for the denominator. Define an exception class DivByZero that has a function called Quotient. The function should take two integer values as input and return an integer value. For example, if the inputs are 5 and 3, it would return 1. However, if the second integer value (or the denominator) is 0, then it should throw a divide-by-zero exception which is caught by the main program. The main program should print a custom error message when this happens that says that there was an attempt to divide by zero and then it should exit normally.