public class Test {

  // 1
  private String world = "World!";

  /* 
  Comment
  */
  public static void main(String[] args) {
    System.out.println("Hello " + world);
  }
}
