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