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