#include using namespace std; int main() { int A, B, C; cin >> A >> B >> C; double ans = (double)A / B * C; cout << fixed << setprecision(12) << ans << endl; }