def div(n,k):
count=0
for i in range(n):
integer=int(input())
if integer%k==0:
count+=1
print count
↧
What's wrong with this code?
↧
def div(n,k):
count=0
for i in range(n):
integer=int(input())
if integer%k==0:
count+=1
print count