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