Calculator Module (Add)

Easy
#functions #math

Input: `a`, `b`. Return: Sum of `a` and `b`. The first step in building a calculator.

Example

Input: 2, 3
Output: 5
Need a hint?
  • Simply return a + b
Run your code to see output