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