#19. no23

no23

Background

Description

Given an int array length 2, return true if it does not contain a 2 or 3.

Format

Input

Output

Samples

[4 5]
true
[4 2]
false
[3 5]
false

Limitation

1s, 1024KiB for each test case.