#include using namespace std; signed main(){ double N, G, V; cin >> N >> G >> V; double ans = N / 5 * G / V; cout << fixed << setprecision( 13 ) << ans << endl; return 0; }