#include <stdio.h> int main() { int l, w, n; while(scanf("%d %d",&l, &w)!=EOF) { n = l / w; printf("%d\n",n); } return 0; } 相关文章: