import javax.servlet.http.*;
import javax.servlet.*;
public class Controller extends HttpServlet {
public void init(ServletConfig config) throws ServletException {
super.init(config);
}
public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, java.io.IOException {
StringBuffer sb = new StringBuffer();
res.setContentType("text/html");
java.io.PrintWriter out = res.getWriter();
out.println(sb);
out.close();
}
public void doGet (HttpServletRequest req, HttpServletResponse res) throws ServletException, java.io.IOException {
doPost(req, res);
}
};