// Class web.Title
// jhous.yeah.netpackage web ;public class Tool {
    public static String htmlShow(String mess){
        StringBuffer sb = new StringBuffer();
     for(int i=0;i<mess.length();i++){
         char c = mess.charAt(i);
         if(c == '\n'){
             sb.append("<br>");
         }else if(c == '"') {
             sb.append("&quot;");
         }else if(c == ' ') {
             sb.append("&nbsp;");
         }else if(c == '>') {
             sb.append("&gt;");
         }else if(c == '<') {
             sb.append("&lt;");
         }else{
             sb.append(c);
         }
      }
      return sb.toString();
 } public static void main (String[] argv){
//Tool c = new Tool(); System.out.println(Tool.htmlShow("<a href=\"index.jsp\">"));
}
}