P, Q, A = map(int, input().split()) count = 0 for i in range(1, 10 ** 9 + 1): if (P - Q) * i // 100 - A > 0: count += 1 print(count)