Can someone tell me what is wrong in this code??

The name of problem is “Enormous input test” and its code is “INTEST”.
And my code is
(n, k) = map(int, input().split())
i=0
b=0
while (n>=i):
a = int(input())
if(a%k == 0):
b=b+1
else :
pass
i+=1
print(b)

while(n>i)
1 Like

thanks