int main() { int m,t,s; scanf("%d %d %d",&m,&t,&s); if(t==0) m=0; else m=m-s/t*1.0; if(m<=0) m=0; printf("%d",m); return 0; }