Facing problem to enter multiple inputs (Odd Even question )

Hello, I m facing a problem in passing the hacker block odd even question can you please help me:

enter = int(input())
summ = 0
for i in range(enter):
entry = int(input())
while(entry/10 != 0):
rem = entry % 10
entry = int(entry/10)
summ = summ + rem
if summ % 2 == 0:
if summ % 4 == 0:
print(“Yes”)
else:
print(“No”)
elif summ % 3 == 0:
print(“Yes”)
else:
print(“No”)

Here you have to use map function to convert multiple values into int:-
enter = [i for i in map(int, input().split())]

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.