A, B, X = map(int, input().split()) count = 0 while X > 0: count += 1 X -= A print(count * B)