<!DOCTYPE html>
<html>
<body>
<%
Function myfunction(a,b)
myfunction=a+b
End Function
response.write(myfunction(5,9))
%>
</body>
</html>