Addition

The Addition API calculates the sum of two numbers.

Parameters

  • num1: The first number
  • num2: The second number

Example Usage

addition = Addition()  
result = addition.fn(3, 4)  
print(result)  # Output: 7