Getting EOF error. Please help

inputs = []
while True:
inp = raw_input()
if inp == “”:
break
inputs.append(int(inp))
neg_sum = 0
for j in inputs:
neg_sum +=j
if neg_sum > 0:
print(j)
else:
break

please check if the identations are correct or not.