P, Q, A = map(int, input().split()) def count(x): ans = 0 for i in range(1, x + 1): if (P - Q) * i < A: ans += 1 return ans count(10 ** 9)