sd.py 99 Bytes Edit 1 2 3 4 5 6 7 s=0 for i in range(1,101): if i%2!=0: s=s+i if i%2==0: s=s-i print(s)