calculate
Perform arithmetic operations (addition, subtraction, multiplication, division) on two numbers.
Instructions
두 숫자에 대해 사칙연산(+, -, *, /)을 수행합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | 첫 번째 숫자 | |
| b | Yes | 두 번째 숫자 | |
| operation | Yes | 연산 종류: add(+), subtract(-), multiply(*), divide(/) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | 계산 결과 |