#includevoid main() { int i,n; i=1; n=0; while ( i<=500 ) { if ( i%7==0 ) n++; i++; } printf("%d\n",n);}
.