Complete the function solveMeFirst to compute the sum of two integers.
Answers
Answered by
2
Yes I can friend of you can you friendship with me
Answered by
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
Social Sciences,
30 days ago
Hindi,
30 days ago
Geography,
30 days ago
Biology,
2 months ago
English,
2 months ago