#include #define mp make_pair #define fi first #define se second #define debug(x) cerr<<#x<<" = "<<(x)<void test(T x,Args... args){cerr< pii; typedef pair pll; const int MAXN=(int)1e5+10; const int MOD=(int)1e9+7; void Main(){ int n,m,p; cin>>n>>m>>p; int cost=(m*p+99)/100; int ans=0; if(n>=m){ int de=n-m; ans=de/cost; n-=ans*cost; } while(n>=m){ n-=cost; ans++; } cout<>T; for(int ca=1;ca<=T;ca++){ Main(); } return 0; }