Даны значения G и Х. Вычислите: у=sqrt(1+g+x)/(16-sqrt(4x))
Var y,g,x: real; begin readln(g,x); y:=sqrt(1+g+x)/(16-sqrt(4*x)); writeln(y); end.