#include<stdio.h>
int main()
{
int i=3,b=4;
do{
printf("%d%d",i,b);
i--;
b++;
}while(i<=5 && b<=6);
return 0;
}


Posted on by