Print array 5
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Array of n integers is given. Print all its even elements, reversing their original order.
Input
First line contains number n (1 ≤ n ≤ 100). Second line contains n integers, each no more than 100 by absolute value.
Output
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 #1
Answer #1
Submissions 12K
Acceptance rate 49%