Problem Description
X是一個勤勞的小孩,總是會幫助大人做家務。現在他想知道對于一根長為L的繩子能晾開多少件寬為W的衣服,顯然這些衣服不能互相疊壓。
Input
多組輸入。 每組輸入兩個整數L,W。
Output
輸出答案。
Example Input
10 5
10 4
Example Output
2
2
#include<stdio.h>
int main()
{
int L,W;
while(scanf("%d%d",&L,&W)!=EOF)
{
printf("%d\n",L/W);
}
return 0;
}