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