Solve Me First

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

Example

a =7

b = 3

Return 10

    
    function solveMeFirst(a, b) { 
      return a + b 
  }