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