def fun(s, p, x):
    return (x // s + (1 if x % s != 0 else 0)) * p


a, b, x = map(int, input().split())
print(fun(a, b, x))