import java.util.Scanner;
class test {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int count=0;
int o1=sc.nextInt();
int o2=sc.nextInt();
while(o1>0)
{
int o3=sc.nextInt();
if(o3%o2==0)
{
count++;
}
o1--;
}
System.out.println(count);
}
}
can any1 pls help me out why dis is code is exceeding time limit ???