multiply
Calculate the product of two numbers by multiplying them together using this mathematical operation tool.
Instructions
Multiply two numbers together
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | First number to multiply | |
| b | Yes | Second number to multiply |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"description": "First number to multiply",
"type": "number"
},
"b": {
"description": "Second number to multiply",
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}