Answer:
Replace the comment with:
maxSum =FindMax(numA,numB)+FindMax(numY,numZ);
Explanation:
Required
The statement to add up the two maximum from the functions
To do this, we have to call FindMax for both arguments i.e.
FindMax(numA,numB) and FindMax(numY,numZ) respectively
Next, use the + sign to add up the returned value.
So, the complete statement is:
maxSum =FindMax(numA,numB)+FindMax(numY,numZ);
See attachment for complete program