total = 0
for unmber in range(1,100):
if number%2 ==1:
continue
total += unmber
print(total)
for number in range(1,100):
total += number