#include
#include<stdio.h>
int main()
{
int i=0,j=1;
do
{
printf("%d ",i);
printf("%d ",j);
i+=2;
j+=2;
}
while(i<10);
}



Posted on by