#include using namespace std; int main() { int a, b, x; cin >> a >> b >> x; int q = (x % a == 0 ? x / a : x / a + 1); cout << b * q << endl; }