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