subtract
Calculate the difference between two numbers by subtracting the second from the first, returning the result as a string.
Instructions
Subtract the second number from the first.
Args: a: The number to subtract from. b: The number to subtract.
Returns: A string with the result of a - b.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | ||
| b | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |