Subtraction

The Subtraction API calculates the difference between two numbers.

Parameters

  • num1: The minuend
  • num2: The subtrahend

Example Usage

subtraction = Subtraction()  
result = subtraction.fn(8, 3)  
print(result)  # Output: 5