1:<html>
   2:<head>
   3:<title>JSP Expression Page</title>
   4:</head>
   5:<body>
   6:<h2>JSP Expression Page</h2>
   7:<p>Ex1: What is 3+3? <%= 3+3 %><br>
   8:Ex2: What is 2*3? <%= 2*3 %><br>
   9:Ex3: Can I combine them?  <%= (2*3) + (3+3) %><br>
  10:Ex4: Add a string? <%= "Here is some text " + (2*3) + (3+3) %><br>
  11:Ex5: Add a string? <%= "Here is some text " + ((2*3) + (3+3)) %><br>
  12:<%! String aString = "What is two times 3? "; %>
  13:<%! int x = 2; %>
  14:<%! int y = 3; %>
  15:Ex6: Let's use variables: <%= aString + (x*y) %>
  16:</p>
  17:</body>
  18:</html>