#include<studio.h>
int main()
{
int i=10;
do
{
printf("%d",i);
printf("\n");
i--;
}while(i>=10);
return 0;
}

Posted on by