<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Example with Calculator Servlet</title>
</head>
<body>
 Chamando o bean de um Servlet <br>
  <form action="CalculatorServlet" method="get">
  Numero1: <input type="text" name="numero1"> <br>
  Numero2: <input type="text" name="numero2"> <br>
  <input type="submit">
  </form>
</body>
</html>