Solve in any one you know.
Complete the function solveMeFirst to compute the sum of two integers.
a = 7
b = 3
Return 10.
Complete the solveMeFirst function in the code.
SolveMeFrist has the following Parameters.
- int a: the first value
- int b: the second value
Returns
- int: the sum of a and b
1 <= a,b <= 1000
a = 3
b = 2
5
3 + 2 = 5