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