Вычислить значение выражения AxA-A. В паскале.
Var a: integer; begin write('Введите a:');readln(a); writeln(a*a-a); end.