#include<stdio.h>
int main ()
{
int i=7,j=8;
do{
printf ("%d\t%d",i,j);
i++;
j--;
}while(i>=7 &&j<=8);
return 0;
}

Posted on by