Calculator Module (Add)
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
Input: `a`, `b`. Return: Sum of `a` and `b`. The first step in building a calculator.
Input: 2, 3
Output: 5
Run your code to see output