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