A, B, X = map(int, input().split()) if X%A == 0: print(B*X//A) else: print(B*(X//A+1))