Print Hello World
Easyjavapythonccpp
Write a program that prints exactly:
Hello WorldThere is no input.
Example 1
Input
(none)
Output
Hello World
- The program reads no input.
- Output must match exactly, with no trailing spaces.
Hint 1
Most languages have a single print/println call.
Hint 2
Watch the exact capitalisation: Hello World.
Print the literal string "Hello World" followed by a newline.