Write the output from the following code:
s = 0 for I in range(10,2,-2): s+=I print "sum= ",s
sum= 28