// This program is used to demonstrate newline and endl
// This is program 3
#include <iostream.h>
main( )
{
cout << "this is the first line" << " this is the second line";
cout << "This is the First line n" << "This is the second line n";
cout << "This is the First line" << endl << "This is the second line n";
cout << 3 << " n" << 2 << endl << 4 << 6;
return 0;
}