1:<html>
   2:<head>
   3:<title>JSP Declarations Page</title>
   4:</head>
   5:<body>
   6:<h2>JSP Declarations Page</h2>
   7:<p>Let's declare some strings and numbers.</p>
   8:<%! String string1 = "When in the course", string2 = " of human events";  %>
   9:<%! int x=1,y=4; %>
  10:Display the strings: <%= string1 + string2 %><br>
  11:The sum of 1 and 4 is: <%= x+y %>
  12:</p>
  13:</body>
  14:</html>