#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //tuple #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits #include using namespace std; constexpr long long int D_MOD = 1000000007; int main() { int A, B, X; cin >> A >> B >> X; if (X <= A) { cout << B << endl; } else { if (X % A == 0) { cout << (X / A) * B << endl; } else { cout << ((X / A) * B) + B << endl; } } return 0; }