Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 358 Bytes

File metadata and controls

20 lines (13 loc) · 358 Bytes

Return the Sum of Two Numbers

Create a function that takes two numbers as arguments and returns their sum.


Examples:

addition(3, 2) ➞ 5
addition(-3, -6) ➞ -9
addition(7, 3) ➞ 10

Solution: