subtract
Perform subtraction by deducting the second number from the first. Input two numerical values, and the tool calculates the difference, returning the result efficiently.
Instructions
Subtract the second number from the first.
Args:
a: Number to subtract from
b: Number to subtract
Returns:
The result of a - b
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | ||
b | Yes |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"title": "A",
"type": "number"
},
"b": {
"title": "B",
"type": "number"
}
},
"required": [
"a",
"b"
],
"title": "subtractArguments",
"type": "object"
}