#include<stdio.h>
int main()
{
int n,i;
printf("enter n:");
scanf("%d",&n);
i=n;
do{
printf("%d",n);
i--;
}while(i>0);
return 0;
}


Posted on by