Specifically for your case, Everson's answer is the one that answers your question.
However, the MySQL client can also perform some operations with some additional level of complexity.
Examples:
SELECT (NFValIcmsSubs - NFValFCP)*2 as NFValIcmsSubs FROM TABELA
SELECT (NFValIcmsSubs - NFValFCP)*(FValIcmsSubs + NFValFCP) as NFValIcmsSubs FROM TABELA
As with basic arithmetic calculations, MySQL also has precedence between operators.
Thus, multiplication and division operators are considered before addition and subtraction operators.
If two operators have the same priority, the expression is read from left to right.
Use the parentheses to force prioritization and improve the legibility of the expression.