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