Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}

Step-by-step explanation:
Given expression is;

Solving for 
Multiplying both sides by 2

Dividing both sides by h

Subtracting
from both sides


Keywords: division, subtraction
Learn more about subtraction at:
#LearnwithBrainly
By simple substitution on the left side and on the right side of the given equation, we have to
For <span>coordinates (-3,-9)
-9</span><span>=−8|-3+3|−9
-9</span><span>=−8|0|−9
</span> -9=−9
Therefore, it is demonstrated that<span> the coordinates of the vertex is
(-3,-9)</span>