int main()
{
int a[10] = {0,1,2,3,4,5,6,7,8,9};
for(int i=0; i<10;i++)
if(i%3==0)
printf("%d\n",a[i]);
}