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