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