Your task is to write a program that reads an integer strictly positive x and a sequence of integers, and prints how many elements of the sequence are multiple of x.
Input
The input is an integer x > 0 followed by a sequence of integers.
Output
Your program must print the number of elements of the sequence that are multiple of x.
Input
13 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Output
2
Input
2 -5 -4 -3 -2 -1 0 1 2 3 4 5
Output
5
Input
32
Output
0
Input
13 26 59 13 13 13 26 1
Output
5