eolymp
bolt
Try our new interface for solving problems
Problems

Print array 5

Print array 5

Time limit 1 second
Memory limit 128 MiB

Array of n integers is given. Print all its even elements, reversing their original order.

Input data

First line contains number n (1n100). Second line contains n integers, each no more than 100 by absolute value.

Output data

In the first line print the number of even elements in array. In the second line print the even elements in the reverse order. If there are no even elements in the array, print "NO".

Examples

Input example #1
7
-2 5 4 -3 7 -1 0
Output example #1
3
0 4 -2
Author Matviychuk Sergiy Volodymyrovych
Source "ABC programming"