Computer Science, asked by arsudhir21, 2 months ago

Complete the function solveMeFirst to compute the sum of two integers.

Answers

Answered by Mohitkarki
2

Yes I can friend of you can you friendship with me

Answered by 201B289
0

Answer:

#include <cmath>

#include <cstdio>

#include <vector>

#include <iostream>

#include <algorithm>

using namespace std;

int solveMeFirst(int a, int b) {

// Hint: Type return a+b; below:

 return a +b;

}

int main() {

 int num1, num2;

 int sum;

 cin>>num1>>num2;

 sum = solveMeFirst(num1,num2);

 cout<<sum;

 return 0;

}

Explanation:

Similar questions