Вычислить значение выражения:f (x)=tgx^2*sin(1-3x)
Var x: real; begin readln(x); writeln(Tan(x) * tan(x) * sin(1 - 3 * x)); end.