a, b, x = map(int, input().split()) if a >= x: print(b) else: if x % a == 0: print(x // a * b) else: print((x // a + 1) * b)