#include <stdio.h> int main() { float n,h,m; scanf("%f %f %f",&n,&h,&m); if(m<=n*h) { printf("%d",(int)(n-(m/h)));//(类型)强制类型转换 } return 0; }