100 atcoder#ABC155B. [ABC155B] Papers, Please

[ABC155B] Papers, Please

Score: 200200 points

Problem Statement

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:

  • All even numbers written on the document are divisible by 33 or 55.

If the immigrant should be allowed entry according to the regulation, output APPROVED; otherwise, print DENIED.

Notes

  • The condition in the statement can be rephrased as "If xx is an even number written on the document, xx is divisible by 33 or 55". Here "if

    " and "or

    " are logical terms.

Constraints

  • All values in input are integers.
  • 1N1001 \leq N \leq 100
  • 1Ai10001 \leq A_i \leq 1000

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 \dots ANA_N

Output

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 66 and 1010.

All of them are divisible by 33 or 55, so the immigrant should be allowed entry.

3
28 27 24
DENIED

2828 violates the condition, so the immigrant should not be allowed entry.