<% @ language="VBScript" %>
<% Option Explicit %>
<html>
<body>
<%
Dim I,j
For I = 1 to 4
For j = 1 to i
Response.write i
Next
Response.write "<br>"
Next
</body>
</html>
Output:
1
22
333
4444
Please explain me how this output is formed.
One bellow the other and is increasing