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