Complete the following in a loop that allows the user to complete the task again should the user wish to continue. The user should be able to complete this task as many times as the user wishes. The following corresponds to code from hw1: Read in two values, x and y. If y is 0, change y to 1. Compute x/y and report to the console. --- A sample execution: Input x and y: 10 5 The result is: 2 Type yes to do this again: yes Input x and y: 5 10 The result is: 0 Type yes to do this again: yes Input x and y: 6 5 The result is: 1 Type yes to do this again: no --- Some notes from class to remember: Code to do things as long as the user wishes to continue: #include using namespace std; int main() { string userContinue = "yes"; while(userContinue == "yes") { //do things here cout << "Type yes to do this again: "; cin >> userContinue; } }