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