def main():
i = int( input ("Enter an interger, the input ends if it is 0: "))
count_pos = 0
count_neg = 0
total = 0
if (i != 0):
while (i != 0):
if (i > 0):
count_pos += 1
elif (i < 0):
count_neg += 1
total += i
i = int( input ("Enter an interger, the input ends if it is 0: "))
count = count_pos + count_neg
print ("The number of positives is", count_pos)
print ("The number of negatives is", count_neg)
print ("The total is", total)
File "", line 16 print ("The number of positives is", count_pos) ^ IndentationError: unindent does not match any outer indentation level