import math A, B, X = map(int, input().split()) ans = math.ceil(X / A) * B print(ans)