//Standard Library Functions(Headers Files Used in C++)
#include<iostream.h>
#include<conio.h>
//Main function[Execution of program starts from main function]
int main()
{
//function for clearing the screen
clrscr();
//function for printing output on the screen
cout<<"Hello World! Welcome To C++"<<endl;
cout<<"Come One Come All";
//function for holding the screen until any key is pressed
getch();
//Returning main function
return 0;
}