#include<stdio.h> int main(){ int m,t,s; scanf("%d %d %d",&m,&t,&s); int time=0,count=0; if(t==0){ printf("0"); } else{ for(int i=0;i<m;i++){ while(time<s){ time += t; count++; } } } int n = m-count; printf("%d",n); return 0; }