#include int main(void) { double a, b, c; scanf("%lf %lf %lf", &a, &b, &c); printf("%lf\n", a/b*c); return 0; }