open Scanf ;; open Printf ;; let () = let a, b, c = scanf "%f %f %f" (fun x y z -> x, y, z) in printf "%.15f\n" (a *. c /. b) ;;