#include <stdio.h> int main() { int n,h,m,y; scanf("%d%d%d",&n,&h,&m); y=n-((m-1)/h+1); printf("%d",y); return 0; }