洗衣服#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;
}

相关文章:

  • 2021-12-10
  • 2021-06-29
  • 2021-10-25
  • 2022-12-23
  • 2021-08-26
  • 2021-12-10
  • 2021-09-13
猜你喜欢
  • 2022-01-07
  • 2021-06-04
  • 2021-05-29
  • 2021-07-27
  • 2022-01-05
  • 2021-06-05
  • 2021-09-20
相关资源
相似解决方案