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(P * 10**9 / 100) < math.floor(Q * 10**9 / 100) + A: ans += 1 print(ans)