#include <stdio.h> int main() { int n,a;float h,m; scanf("%d %f %f", &n, &h,&m); a=n-m/h;//float强制转化为整型会取整数部分 printf("%d\n",a); return 0; }