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