HackerRank (C++)


Solve Me First

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

Example

$a = 7$

$b = 3$

Return $10$

Function Description

Complete the solveMeFirst function in the editor below.

solveMeFirst has the following parameters:

Returns

Constraints

$1 \le a, b \le 1000$

Sample Input

a = 2
b = 3

Sample Output

5

Explanation

$2 + 3 = 5$

hackerrank.com/challenges/solve-me-first/