subtract
Calculate the difference between two numbers by subtracting the second number from the first number to get the result.
Instructions
Subtract the second number from the first number.
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"
],
"type": "object"
}