import math P,Q,A = map(int,input().split()) P += 100 Q += 100 if P == Q: print(10**9 if A > 0 else 0) exit() 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(P * 10**9 / 100) < math.floor(Q * 10**9 / 100) + A: ans += 1 print(ans)