#include using namespace std; int main(){ long n, g; double v; cin >> n >> g >> v; cout << (double)(g * (n / 5)) / v << endl; return 0; }