require 'bigdecimal' n, g, v = gets.split.map(&:to_i) puts (BigDecimal.new((n / 5).to_s) * g / v).to_s('F')