Я пытаюсь решить проблему https://practice.geeksforgeeks.org/contest-problem/sahil-love-good-scorer/0/ и получаю следующую ошибку, хотя этот код хорошо работает на других IDE
Runtime Error:
Runtime ErrorTraceback (most recent call last):
File "/home/6571cce4dcc6723ee2dba6c01da8240c.py", line 3, in <module>
m=list(map(int,input().split()))
EOFError: EOF when reading a line
Вот мой код:
n=int(input())
while n!=0:
m=list(map(int,input().split()))
l1=list(map(int,input().split()))
l2=list(map(int,input().split()))
s1=sum(l1)
s2=sum(l2)
if s1>s2:
print('C1')
else:
print('C2')
Какую ошибку я делаю, пожалуйста, кто-нибудь может помочь.