#include<iostream.h> #include<conio.h> //----------------------------- Main( ) -------------------------------// main() { clrscr(); cout<<\"\\n The first twenty integers are as follows :\"<<endl; int count=1; while(count<=20) { cout<<\" \"<<count; count++; } getch(); return 0; }