#AGC010A. [AGC010A] Addition

[AGC010A] Addition

Score : 300300 points

Problem Statement

There are NN integers written on a blackboard. The ii-th integer is AiA_i.

Takahashi will repeatedly perform the following operation on these numbers:

  • Select a pair of integers, AiA_i and AjA_j, that have the same parity (that is, both are even or both are odd) and erase them.
  • Then, write a new integer on the blackboard that is equal to the sum of those integers, Ai+AjA_i+A_j.

Determine whether it is possible to have only one integer on the blackboard.

Constraints

  • 2N1052 \leq N \leq 10^5
  • 1Ai1091 \leq A_i \leq 10^9
  • AiA_i is an integer.

Input

The input is given from Standard Input in the following format:

NN

A1A_1 A2A_2ANA_N

Output

If it is possible to have only one integer on the blackboard, print YES. Otherwise, print NO.

3
1 2 3
YES

It is possible to have only one integer on the blackboard, as follows:

  • Erase 11 and 33 from the blackboard, then write 44. Now, there are two integers on the blackboard: 22 and 44.
  • Erase 22 and 44 from the blackboard, then write 66. Now, there is only one integer on the blackboard: 66.
5
1 2 3 4 5
NO