A,B,X=map(int,input().split())
N=0
ans=0
while N<X:
    N+=A
    ans+=B
print(ans)