#include #include #define llint long long using namespace std; llint a, b, c; int main(void) { //ios::sync_with_stdio(0); //cin.tie(0); cin >> a >> b >> c; double ans = (double)a * c / b; printf("%.11f\n", ans); return 0; }