sum = 0
for i = 10 to 4 step -2
sum = sum + i
next
response.write("10 + 8 + 6 + 4 =" & sum)

10 + 8 + 6 + 4 =28