#include<stdio.h> #include<math.h> int main() { int m,t,s; double c; scanf("%d%d%d",&m,&t,&s); c=(double)s/t; if(t==0) { exit(0); } if(fmod(c,1)!=0) { c++; } printf("%.0lf",m-c); return 0; }