#include using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, g, v; cin >> n >> g >> v; cout << fixed << setprecision(15) << double(n / 5) * g / v << endl; return 0; }