import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner scanner = new Scanner(System.in); String input_text = scanner.nextLine(); System.out.println("Hello World!"); scanner.close(); } }