<%
Option Explicit
Dim x
Dim y
Dim z
x = 1
y = 0
z = x / y
Response.Write z
z = z + 8
y = z  x
Response.Write y
%>
