#include using namespace std; namespace { typedef long double real; typedef long long ll; template ostream& operator<<(ostream& os, const vector& vs) { if (vs.empty()) return os << "[]"; os << "[" << vs[0]; for (int i = 1; i < vs.size(); i++) os << " " << vs[i]; return os << "]"; } template istream& operator>>(istream& is, vector& vs) { for (auto it = vs.begin(); it != vs.end(); it++) is >> *it; return is; } ll N; real G, V; void input() { cin >> N >> G >> V; } void solve() { ll n = N / 5; cout << fixed << setprecision(12) << G * n / V << endl; } } int main() { input(); solve(); return 0; }