devo risolvere un problema dove inserisco un numero e dopo aver premuto incrementa lo incrementa nella stessa pagina il mio problema e come posso fare per incrementare nuovamente il numero aumentato al''interno della casella

codice:
<%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Varie Prove Con Il Form</title> 
</head>
 <body>
 <h1>Problemi Vari:</h1>
 <form action="index.jsp">
 <input type="text" name="s"/> 
<input type="submit" value="incrementa"/>
 <% int s; if (request.getParameter("s") != null) {
 s = Integer.parseInt(request.getParameter("s"));
 out.print(s+1); } %>
 </form>
 </body> 
</html>