Multiplication

The Multiplication API calculates the product of two numbers.

Parameters

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

Example Usage

multiplication = Multiplication()  
result = multiplication.fn(4, 5)  
print(result)  # Output: 20