#include using namespace std; long long n, g, v; void input() { cin >> n >> g >> v; } void solve() { cout << (int(n / 5)) * (1.0 * g) / v << endl; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(15); input(); solve(); }