#include using namespace std; int main(){ double a, b, c; cin >> a >> b >> c; printf("%.12lf\n", a * (c / b)); return 0; }