#include <bits/stdc++.h> using namespace std; int main() { int m,t,s; scanf("%d%d%d",&m,&t,&s); int n=ceil(s/t); printf("%d",n>=m?0:m-n); return 0; }