Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 487 Bytes

01-Solve_Me_First.md

File metadata and controls

46 lines (28 loc) · 487 Bytes

Problem

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:

  • int a: the first value
  • int b: the second value

Returns

  • int: the sum of a and b

Constraints

1 <= a, b <= 1000

Sample Input

a = 2
b = 3

Sample Output

5

Explanation

2 + 3 = 5