CPP
cpp
1
2
3
4
5
6
7
8
9
#include <iostream>
using namespace std;
int main()
{
cout<<"Hello World! \n" <<"How You doing?" <<endl <<"I'm great if" <<" you asked" <<"\n" <<"What a day \n" <<"\n\n\n\n" <<endl <<endl;
cout<<"I love " <<"\n okay?";
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run