#include<bits/stdc++.h> using namespace std; double x,y,t; int main(){ cin>>x>>y>>t; cout<<int(x*t/(y-x)*y); return 0; }