multiply
Perform multiplication of two numbers for quick calculations. Designed to process numerical inputs efficiently, enabling users to generate accurate results with minimal steps.
Instructions
Multiply two numbers
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| a | Yes | First number | |
| b | Yes | Second number | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "a": {
      "description": "First number",
      "type": "number"
    },
    "b": {
      "description": "Second number",
      "type": "number"
    }
  },
  "required": [
    "a",
    "b"
  ],
  "type": "object"
}