10 lines
158 B
C++
10 lines
158 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
cout << "Hello World" << endl; //print Hello Word on the screen
|
|
return 0; // for convention
|
|
}
|