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




Posted on by