#include #include #include typedef long long ll; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(13); ll n, g, v; std::cin >> n >> g >> v; n /= 5; std::cout << n * g * 1.0 / v << std::endl; return 0; }