#include using namespace std; int main() { int a, b, k; cin >> a >> k >> b; int x=b/a; if(b % a !=0) { x++; } k=k * x; cout<< k; cout<