Language Basics C++ Tutorial

#include 
int main()
{
   using namespace std;
  
   cout << "a new line ";
   cout <<  endl;
   return 0;
}
a new line