Problem
Welcome to Online Judge!
Write a program which prints "Hello World"
to standard output.
Input
There is no input for this problem.
Output
Print "Hello World"
in a line.
Sample Input
No input
Sample Output
Hello World
Solution
#include <iostream>
using namespace std;
int main() {
cout << "Hello World" << endl;
return 0;
}