pe = 0
n = 0
po = 0
x = 1
while x!=0:
    y = int(input("Enter a number: "))
    if y<0:
        n = n+y
    elif y%2==0 and y>0:
        pe = pe+y
    else:
        po = po+y
    x = y
print("The sum of negative numbers is", n \n "The sum of positive even numbers is", pe \n "The sum of positive odd numbers is", po)I get the error mentioned in the title when I run this program. What am I doing wrong?
 
    