Вычислить значение функции y=2sinx+5/x
Var x: real; begin readln(x); writeln('y(', x, ') = ', 2 * sin(x) + 5 / x); end.