main()
{
int k;
clrscr();
for(k = 10; k >= 1; k = k - 1)
{
printf("\n %d", k);
}
getch();
}