Y=3a+4/ab-4 (паскаль)
var
a,b:integer;
y:real;
begin
readln(a,b);
y:=3*a+4/(a*b)-4;
writeln(y:0:3);
end.