{"raw_statement":[{"iden":"problem statement","content":"You are given positive integers $N$ and $K$, and a sequence of length $N$, $A=(A_1,A_2,\\ldots,A_N)$.\nExtract all elements of $A$ that are multiples of $K$, divide them by $K$, and print the quotients."},{"iden":"constraints","content":"*   $1\\leq N,K\\leq 100$\n*   $1\\leq A_1 < A_2 < \\ldots < A_N \\leq 100$\n*   $A$ has at least one multiple of $K$.\n*   All given numbers are integers."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$ $K$\n$A_1$ $A_2$ $\\ldots$ $A_N$"},{"iden":"sample input 1","content":"5 2\n2 5 6 7 10"},{"iden":"sample output 1","content":"1 3 5\n\nThe multiples of $2$ among the elements in $A$ are $2$, $6$, and $10$. Divide them by $2$ to get $1$, $3$, and $5$, and print them in ascending order with spaces in between."},{"iden":"sample input 2","content":"3 1\n3 4 7"},{"iden":"sample output 2","content":"3 4 7"},{"iden":"sample input 3","content":"5 10\n50 51 54 60 65"},{"iden":"sample output 3","content":"5 6"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}