// No.379 五円硬貨 // https://yukicoder.me/problems/no/379 // #include #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); long N, G, V; cin >> N >> G >> V; long gas = (N / 5) * G; long double ans = static_cast(gas) / V; cout << fixed << setprecision(12) << ans << endl; }