The (unary) sign operators are + and -.
Plus: +<operand>
Minus: -<operand>
The + operator does not change the operand, whereas the - operator changes the operand to its two's complement. These operators are valid for absolute expression operands.
See the following listing for an example of the unary sign operators.
+$32 ; ( = $32) -$32 ; ( = $CE = -$32)