calculator
Perform basic arithmetic operations on two numbers including addition, subtraction, multiplication, and division to solve mathematical calculations.
Instructions
두 숫자에 대한 사칙연산을 수행하는 계산기 도구
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| num1 | Yes | 첫 번째 숫자 | |
| num2 | Yes | 두 번째 숫자 | |
| operation | Yes | 연산자 |
Input Schema (JSON Schema)
{
"properties": {
"num1": {
"description": "첫 번째 숫자",
"type": "number"
},
"num2": {
"description": "두 번째 숫자",
"type": "number"
},
"operation": {
"description": "연산자",
"enum": [
"add",
"subtract",
"multiply",
"divide"
],
"type": "string"
}
},
"required": [
"num1",
"num2",
"operation"
],
"type": "object"
}