#D9224. Surmise

    ID: 7672 Type: Default 1000ms 268MiB

Surmise

Surmise

D: Sontaku (Surmise)

Some twins like even numbers.

Count how many even numbers are in N N integers A1,A2,A3, dots,AN A_1, A_2, A_3, \ dots, A_N .

input

The integer N N is given on the first line.

On the second line, N N integers A1,A2,A3, dots,AN A_1, A_2, A_3, \ dots, A_N are given, separated by blanks.

output

Output an even number. However, insert a line break at the end.

Constraint

  • N N is an integer greater than or equal to 1 1 and less than or equal to 100 100
  • A1,A2,A3, dots,AN A_1, A_2, A_3, \ dots, A_N are integers between 1 1 and 100 100

Input example 1

Five 4 3 5 2 6

Output example 1

3

A1=4 A_1 = 4 , A4=2 A_4 = 2 and A5=6 A_5 = 6 are even numbers. Therefore, the even number is 3 3 .

Input example 2

3 2 2 2

Output example 2

3

Even if the numbers are the same, if the positions in A1,A2,A3, dots,AN A_1, A_2, A_3, \ dots, A_N are different, they are counted as different numbers.

Example

Input

5 4 3 5 2 6

Output

3

inputFormat

input

The integer N N is given on the first line.

On the second line, N N integers A1,A2,A3, dots,AN A_1, A_2, A_3, \ dots, A_N are given, separated by blanks.

outputFormat

output

Output an even number. However, insert a line break at the end.

Constraint

  • N N is an integer greater than or equal to 1 1 and less than or equal to 100 100
  • A1,A2,A3, dots,AN A_1, A_2, A_3, \ dots, A_N are integers between 1 1 and 100 100

Input example 1

Five 4 3 5 2 6

Output example 1

3

A1=4 A_1 = 4 , A4=2 A_4 = 2 and A5=6 A_5 = 6 are even numbers. Therefore, the even number is 3 3 .

Input example 2

3 2 2 2

Output example 2

3

Even if the numbers are the same, if the positions in A1,A2,A3, dots,AN A_1, A_2, A_3, \ dots, A_N are different, they are counted as different numbers.

Example

Input

5 4 3 5 2 6

Output

3

样例

5
4 3 5 2 6
3