Description: For this assignment, you will create a function to calculate the maximum length of the third side of a triangle and its hypotenuse. You will collect two side lengths from the user. = user. Requirements: Formulas 1. Collect the length of two sides of a triangle from the Maximum length = side 1 + side 2 - 1 *Hypotenuse = V(side12 + side2?) 2. Within one function, calculate the maximum third *you may use the C++ sqrt() function for length of a triangle and its hypotenuse. Return the this calculation. value of the hypotenuse to main(). 3. Display the results for the triangle's maximum third side and its hypotenuse in main(). Round the hypotenuse to the nearest 10 Run three sets of test data through your program. 5. Output must be labelled and easy to read as shown in the sample output below. 6. Program must be documented with the following: a. // Name b. // Date C. // Program Name d. // Description 7. Flowchart the logic of the program 4. Sample Output: Please enter the two known sides of the triangle: 8 10 The maximum length of your third side is: 17 Your triangle's hypentuse is: 12.81 Please enter the two known sides of the triangle: 3 6 The maximum length of your third side is: 8 Your triangle's hypentuse is: 6.71 Please enter the two known sides of the triangle: 12 19 The maximum length of your third side is: 30 Your triangle's hypentuse is: 22.47 Test Data: Side 1 Side 2 Max Side Hypotenuse 8 10 17 12.81 3 6 6.71 12 19 30 22.47 8