Complete the function solveMeFirst
to compute the sum of two integers.
a = 7
b = 3
Return 10
.
Complete the solveMeFirst
function in the editor below.
solveMeFirst
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 = 2
b = 3
5
2 + 3 = 5