cout<<"
";
or
cout<<endl;
#include <iostream>
using namespace std;
int main() {
cout <<"HELLO"<<endl<<"WORLD";
}
/*Output
HELLO
WORLD
*/
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!
";
cout << "I am learning C++";
return 0;
}