Score: $200$ points
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.
According to the regulation, the immigrant should be allowed entry to the kingdom if and only if the following condition is satisfied:
If the immigrant should be allowed entry according to the regulation, output APPROVED
; otherwise, print DENIED
.
Input is given from Standard Input in the following format:
$N$ $A_1$ $A_2$ $\dots$ $A_N$
If the immigrant should be allowed entry according to the regulation, print APPROVED
; otherwise, print DENIED
.
5 6 7 9 10 31
APPROVED
The even numbers written on the document are $6$ and $10$.
All of them are divisible by $3$ or $5$, so the immigrant should be allowed entry.
3 28 27 24
DENIED
$28$ violates the condition, so the immigrant should not be allowed entry.