program kontroll2; var x: real; begin write('x='); readln(x); if abs(x)>0.0001 then writeln('5/x=',5/x:5:2) else writeln('ei saa jagada'); end.