#include using namespace std; int main(){ double A,B,C; cin >>A >> B >> C; double ans; ans = C/B*A; cout << ans << endl; }