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