NZEC error

i have just recently created an account here. Please help me out with the NZEC error. PS: i modified the sol by looking at other sol but still same NZEC error it has shown
for i in range(int(input())):
s,w1,w2,w3=map(int,input().split())
if s>=w1+w2+w3:
print(1)
elif s>=w1+w2 or s>=w2+w3:
print(2)
else:
print(3)

bro here you are printing 1,2,3.
u cant print them in the integer form without storing them.
either - print them in the string form.
like - print(“1”);print(“2”),etc.
else: - declare variable.
like a,b,c=1,2,3
print(a);print(b);print©.