sum = 0start = 1while True: if start%2 ==0: sum = sum - start else: sum = sum + start start = start + 1 if start == 101: breakprint(sum)