#include #define PI 3.14159265359 using namespace std; int main() { int N, G, V; cin >> N >> G >> V; N /= 5; double ans = (double)G * N / V; cout << fixed << setprecision(15) << ans << endl; }