subtract
Calculate the difference between two numbers using a simple subtraction tool. Input the minuend and subtrahend to get the result quickly.
Instructions
Subtract two numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | First number (minuend) | |
b | Yes | Second number (subtrahend) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"a": {
"description": "First number (minuend)",
"type": "number"
},
"b": {
"description": "Second number (subtrahend)",
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}