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