#include<bits/stdc++.h> using namespace std; int main() { double m,r,w,a=1; cin>>m>>r>>w; r/=100; while(m+a*m*r<w) a++; cout<<int(a-1); }