P, Q, A = map(int, input().split()) cnt = 0 for x in range(1, 2000000): if (x * P) // 100 < (x * Q) // 100 + A: cnt += 1 print(cnt)