+ operator
The result of the unary plus operator (+) is the value of its operand. The operand to the unary plus operator must be an integer or float type.
+ Expression
> A = 123
> PRINT +A
123