JSP Expression Page

Ex1: What is 3+3? <%= 3+3 %>
Ex2: What is 2*3? <%= 2*3 %>
Ex3: Can I combine them? <%= (2*3) + (3+3) %>
Ex4: Add a string? <%= "Here is some text " + (2*3) + (3+3) %>
Ex5: Add a string? <%= "Here is some text " + ((2*3) + (3+3)) %>
<%! String aString = "What is two times 3? "; %> <%! int x = 2; %> <%! int y = 3; %> Ex6: Let's use variables: <%= aString + (x*y) %>