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