{"raw_statement":[{"iden":"problem statement","content":"You are an immigration officer in the Kingdom of AtCoder. The document carried by an immigrant has some number of integers written on it, and you need to check whether they meet certain criteria.\nAccording to the regulation, the immigrant should be allowed entry to the kingdom if and only if the following condition is satisfied:\n\n*   All even numbers written on the document are divisible by $3$ or $5$.\n\nIf the immigrant should be allowed entry according to the regulation, output `APPROVED`; otherwise, print `DENIED`."},{"iden":"notes","content":"*   The condition in the statement can be rephrased as \"If $x$ is an even number written on the document, $x$ is divisible by $3$ or $5$\". Here \"[if](https://en.wikipedia.org/wiki/Material_conditional)\" and \"[or](https://en.wikipedia.org/wiki/Logical_disjunction)\" are logical terms."},{"iden":"constraints","content":"*   All values in input are integers.\n*   $1 \\leq N \\leq 100$\n*   $1 \\leq A_i \\leq 1000$"},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$A_1$ $A_2$ $\\dots$ $A_N$"},{"iden":"sample input 1","content":"5\n6 7 9 10 31"},{"iden":"sample output 1","content":"APPROVED\n\nThe even numbers written on the document are $6$ and $10$.\nAll of them are divisible by $3$ or $5$, so the immigrant should be allowed entry."},{"iden":"sample input 2","content":"3\n28 27 24"},{"iden":"sample output 2","content":"DENIED\n\n$28$ violates the condition, so the immigrant should not be allowed entry."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}