P,Q,A=map(int,input().split()) ans=0 X=10**7 for x in range(1,X+1): if (100+P)*x//100<(100+Q)*x//100+A: ans+=1 if P