#include int main() { int n; double g, v; scanf("%d %lf %lf", &n, &g, &v); printf("%.20lf\n", n / 5 * g / v); return 0; }