class Whatever {
  public static void main(String[] args) {
    // the code                       // what gets printed 
    System.out.println("+----+");     // +----+
    System.out.println("|    |");     // |    |
    System.out.println("|    |");     // |    |
    System.out.println("+----+");     // +----+ 
    
    // the code                       // what gets printed 
    System.out.println("  __   ");    //   __   
    System.out.println(" ( o>  ");    //  ( o> 
    System.out.println(" ///\\  ");   //  ///\
    System.out.println(" \\V_/_ \n"); //  \V_/_ 
                                      //
                                      // notice the extra line from \n
    
    // the code                                          // what gets printed 
    
    System.out.println("I hope you like my penguin..."); // I hope you like my penguin...
  }
}