0
Given N numbers: the first number in the input is N, after that N integers are given. Count the number of zeros among the given
answer is: N=int(input()) x=[] zero=0 for i in range(1,N+1): y=int(input()) x.append(y) if y==0: zero +=1 print(zero)
1 Answer
+ 7
Khicheengui Elbeg , what is your problem? you have not posted a question.