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