def p(l): x = True y = len(l) for z in range(y): if (sum(l[z+1:]) == sum(l[:z])): x = False return z if x: return -1
So I