#include #define taskname "" #define ull unsigned long long #define ll long long #define db double #define ld long double #define fi first #define se second #define pii pair #define vii vector #define pll pair #define vll vector #define all(a) (a).begin(), (a).end() #define foru(i, a, b, k) for(int i = a; i <= b; i+=k) #define ford(i, a, b, k) for(int i = a; i >= b; i-=k) #define FOR(i, a, b) for(int i = a; i <= b; i++) #define pb push_back #define sz(s) (int)s.size() #define ctn continue #define uset unordered_set #define umap unordered_map #define TIME (1.0 * clock() / CLOCKS_PER_SEC) #define endl "\n" using namespace std; const int maxn = (int) 1e8 + 10; const int MOD = (int) 1e9 + 7; const int MAXN = (int) 1e3 + 10; const int INF = (int) 2e9; const ll LLINF = (ll) 2e18; // chon ra 3 so trong mang void solve() { ll a, b, x; cin >> a >> b >> x; if (x % a == 0) { cout << 1LL * b * (x/a); } else cout << 1LL * b * (x/a+1); } int main() { // freopen("test.inp", "r", stdin); //freopen("test.ans", "w", stdout); ios_base::sync_with_stdio(false); cin.tie(NULL); solve(); cerr << "Time elapsed: " << TIME << " s.\n"; return (0 ^ 0); }