Change the main function below to an interactive version.
int main() {int m, n; // input - 2 numbersint sum; // output - their sumcin >> m >> n;cout << "m is " << m << ", n is " << n << endl;sum = m + n;cout << "Their sum is " << sum << endl;return 0;}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.