The area of a triangle (whose sides have lengths a, b, and c) can be calculated using Heron's formula as shown in Eqs (2) and (3). Write a C++ function that calculates the area of a triangle using Heron's formula. Use the function in a program that prompts the user for the lengths of the sides of a triangle and displays the area of the triangle. After displaying the value, the program should indefinitely go back to prompt for the lengths of sides of the next triangle, then recalculate and display the area. The program should quit when the user enters a negative number. The prompt of the program should inform the user as to how to quit it (by entering a negative number for the length of the triangle side). (15 Bonus Marks) Modify the program in b. so that it takes the x and y coordinates as user input and then computes the lengths of the triangle sides before computing the area. HINT: include <cmath>