#include using namespace std; using namespace chrono; #if __has_include() #include using namespace atcoder; #endif int main() { long double a, b, c; cin >> a >> b >> c; cout << fixed << setprecision(20) << (c / b * a) << endl; return 0; }