When learning a new language, we first learn to output some message. Here, we'll start with the famous Hello World message. Now, here you are given a function to complete. Don't worry about the ins and outs of functions, just add the command (System.out.print("Hello World")) to print Hello World.
Example:
Input:
No input
Output:
Hello World
Explanation:
Hello World is printed.
Expected Time Complexity: O(1).
Expected Auxiliary Space: O(1).
User Task:
Your task is to complete the function below to print Hello World.