Write a program that reads sequences of natural numbers, and for each one tells if it has two elements such that their sum is a prime number.
Input consists of several sequences, each one in a line. Each sequence consists of a natural number , followed by natural numbers .
For each input sequence, print “yes” or
“no” depending on if it is possible to find two elements
and
(with
)
such that
is a prime number.
Using arrays, it is possible to precompute which numbers are prime and which are not up to a certain maximum. In this exercice it is not possible because we do not know any maximum, and it is not necessary for efficiency reasons because all the numbers are small enough.
Input
6 3 5 7 15 13 1 2 0 2
Output
no yes