#D11394. Papers Please

    ID: 9477 Type: Default 2000ms 1073MiB

Papers Please

Papers Please

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 3 or 5.

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

Constraints

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

Input

Input is given from Standard Input in the following format:

N A_1 A_2 \dots A_N

Output

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

Examples

Input

5 6 7 9 10 31

Output

APPROVED

Input

3 28 27 24

Output

DENIED

inputFormat

outputFormat

output APPROVED; otherwise, print DENIED.

Constraints

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

Input

Input is given from Standard Input in the following format:

N A_1 A_2 \dots A_N

Output

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

Examples

Input

5 6 7 9 10 31

Output

APPROVED

Input

3 28 27 24

Output

DENIED

样例

5
6 7 9 10 31
APPROVED