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

Posted on by