Print array 4
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Array of n integers is given. Print all its negative 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 negative elements in array. In the second line print the negative elements in the reverse order. If there are no negative elements in the array, print "NO".
Examples
Input #1
Answer #1
Input #2
Answer #2
Submissions 16K
Acceptance rate 43%