ASP Round a number

Round a number

<html>
<body>

<%
i = 12.9
j = 12.3
response.write(Round(i))
response.write("<br>")
response.write(Round(j))
%>

</body>
</html>