import Numeric main = do [n, g, v] <- return . map (read::String->Integer) . words =<< getLine putStrLn $ showFFloat Nothing (fromIntegral(n `div` 5 * g) / (fromIntegral v)) ""