bakyuuuuuuuuuuuuun
| Name | Symbol in Java | Technical Usage | Example |
| Addition | + | operand + operand | 5 + 2 (yields 7) |
| Subtraction | - | operand - operand | 7 - 2 (yields 2) |
| Multiplication | * | operand * operand | 2 * 5 (yields 10) |
| Division | / | operand / operand | 10 / 5 (yields 2) |
| Modulus(remainder) | % | operand % operand | 10 % 3 (yields 1) |