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