Creating a Method Creating a Method <%! int addem(int op1, int op2) { return op1 + op2; } %> <% out.println("2 + 2 = " + addem(2, 2)); %>