Q)Develop a Java web application to implement the use-case of addition of two numbers. jspadditionapplication numbers.html addition.jsp WEB-INF web.xml src classes lib http://localhost:8081/jspadditionapplication/numbers.html numbers.html ----------------

numbers entry screen

Number 1

Number 2

web.xml ----------- Note:- a jsp need not be registered with the container addition.jsp ------------- <% int n1=Integer.parseInt(request.getParameter("t1")); int n2=Integer.parseInt(request.getParameter("t2")); int sum=n1+n2; %> The sum is <%= sum %>