#include using namespace std; typedef long long ll; int main(){ double p, q; int a; cin >> p >> q >> a; if(p == q){ cout << (a==0 ? 0 : 1000000000) << endl; return 0; } if(p < q){ cout << 1000000000-q << endl; return 0; } int ret = 0; for(double i = 1; i <= a*100; i++){ if((int)(i*p/100) - (int)(i*q/100) < a) ret++; } cout << ret << endl; return 0; }