#include<bits/stdc++.h> using namespace std; double a,b,c,d; int e; int main(){ cin>>a>>b>>c; d=a*c; e=d+(d/(b-a))*a; cout<<e; return 0; }