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