Advertisement
Guest User

MyHomeWork

a guest
Apr 19th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. N=int(input())
  2. count=0
  3. for i in range(N):
  4. x=int(input())
  5. if x%2==0 and x%5==0:
  6. count=count+1
  7. print(count)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement