#include #include using namespace std; int main() { int A, B, C; cin >> A >> B >> C; cout << setprecision(10) << (float)A / (float)B * (float)C << endl; return 0; }