#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
int main()
{
int m,t,s;
int max(int a,int b);
scanf("%d %d %d",&m,&t,&s);
if(t==0)
printf("%d",m);
else
printf("%d",max(0,(m-ceil(s/t))));
}
int max(int a,int b)
{
if(a>b)
return(a);
else
return(b);
}