Addition
The Addition API calculates the sum of two numbers.
Parameters
num1: The first numbernum2: The second number
Example Usage
addition = Addition()
result = addition.fn(3, 4)
print(result) # Output: 7
Addition
The Addition API calculates the sum of two numbers.
num1: The first numbernum2: The second numberaddition = Addition()
result = addition.fn(3, 4)
print(result) # Output: 7