Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.

h>

int main()
{
int n, get;
while(scanf("%d",&n)==1)
{
if(n==0)
break;
get=0;
while(n>=3)
{

n=(n-3)+1;
get+=1;

}
if(n==2)
get+=1;
printf("%d\n",get);
}
return 0;
}

You might also like