result = 0
for x in [3,3,5]:
    if x > 3:
        result = result - x
    else:
        result = result + x

Result == ?