import math P,Q,A = map(int,input().split()) ans = 0 for i in range(1,A*(100+1)): if math.floor(P * i / 100) < math.floor(Q * i / 100) + A: ans += 1 if math.floor((100 + P) / 100 * 10**9) < math.floor((100 + Q) / 100 * 10**9) + A: ans += 1 print(ans)