#include #include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); uint16_t A, B, X; cin >> A >> B >> X; cout << B * static_cast((X + A - 1) / A) << '\n'; return 0; }