#include<iostream.h> #include<conio.h> void main(){ clrscr(); int n; n=1; while(n<=10) { cout<<n<<endl; n=n+1; } getch(); }