Standard math operators: `+` (add), `-` (subtract), `*` (multiply), `/` (divide), `%` (modulus). `++` and `--` for increment/decrement are statements, not expressions.
Mathematical calculations.
Math operations.
a := 10
b := 3
fmt.Println(a + b) // 13
fmt.Println(a % b) // 1 (Remainder)
a++ // Valid
// b = a++ // Invalid in Go
Be careful with integer division; `5/2` equals `2`.