Sum of Two Numbers
MATH
Problem
Given two integers a
and b
, return the sum of these two numbers.
Examples:
add(2, 3) // Output: 5 // Explanation: 2 + 3 = 5, so the result is 5. add(0, 10) // 10 add(-4, 7) // 3
Loading...
Given two integers a
and b
, return the sum of these two numbers.
add(2, 3) // Output: 5 // Explanation: 2 + 3 = 5, so the result is 5. add(0, 10) // 10 add(-4, 7) // 3