#include using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; double ans = (double)c/b*a; printf("%.6f", ans); }