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