#include <stdio.h>

int main()
 {
    float n,m,h;
    scanf("%f %f %f",&n,&h,&m);
    printf("%d",(int)(n-(m/h)));
    return 0;
}