import java.io.*;
class Template {
  String bodyStyle = null;

  void prefix(PrintStream o, int depth) {
    o.println("<html><head></head><body text=\"#000000\" bgcolor=\"#FFFFFF\">");
  }

  static String dotDotSlash(int depth) {
    if (depth == 1) return "../";
    if (depth == 2) return "../../";
    return "";
  }

  void suffix(PrintStream o, int depth) {
    o.println("</body></html>");
  }
}
