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