JSP Declarations Page

Let's declare some strings and numbers.

<%! String string1 = "When in the course", string2 = " of human events"; %> <%! int x=1,y=4; %> Display the strings: <%= string1 + string2 %>
The sum of 1 and 4 is: <%= x+y %>