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