def check(su,v,l=[]):
if(su<0):
print(*l,sep=ā\nā)
else:
l.append(v)
def cs(v,su,l=[]):
su=+v
check(su,v,l)
cs(int(input()),su)
cs(int(input()),0)
this was the code i submitted but the compiler shows error at line 9, EOF, even when ive provided custom input
