#include <stdio.h> int main() { int a,b,c; int n; scanf("%d%d%d",&a,&b,&c); n = c/b; if(c%b!=0) n++; printf("%d",a-n); }