#include void main(void){ int a , b , x; scanf("%d %d %d",&a,&b,&x); int ans = x/a * b; if(x%a != 0){ ans += b; } printf("%d",ans); }