{"raw_statement":[{"iden":"problem statement","content":"You are given a sequence of $N$ integers: $A=(A _ 1,A _ 2,\\ldots,A _ N)$.\nPrint all even numbers in $A$ without changing the order."},{"iden":"constraints","content":"*   $1\\leq N\\leq 100$\n*   $1\\leq A _ i\\leq 100\\ (1\\leq i\\leq N)$\n*   $A$ contains at least one even number.\n*   All values in the input are integers."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$\n$A _ 1$ $A _ 2$ $\\ldots$ $A _ N$"},{"iden":"sample input 1","content":"5\n1 2 3 5 6"},{"iden":"sample output 1","content":"2 6\n\nWe have $A=(1,2,3,5,6)$. Among them are two even numbers, $A _ 2=2$ and $A _ 5=6$, so print $2$ and $6$ in this order, with a space in between."},{"iden":"sample input 2","content":"5\n2 2 2 3 3"},{"iden":"sample output 2","content":"2 2 2\n\n$A$ may contain equal elements."},{"iden":"sample input 3","content":"10\n22 3 17 8 30 15 12 14 11 17"},{"iden":"sample output 3","content":"22 8 30 12 14"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}