Baekjoon Algorithm | Problem 2557: Hello World

Source

https://www.acmicpc.net/problem/2557

Problem

Solve Baekjoon Online Judge problem 2557, Hello World.

Input

Follow the input format and constraints given in the original problem statement.

Output

Print the answer required by the problem.

Sample Input 1

Sample Output 1

Hello World!

Algorithm Classification

  • Implementation

Solution

public class Main {
    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}