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


Posted on by