Олимпиадный тренинг

Задача 33200. Vector: Beginning


Задача

Темы: Массивы
Create a vector and fill it with positive elements only.


Input
The first line is the number of elements in the array. The second line contains the elements of the array.
 
Output
Output only positive elements from the sequence.

 
Examples
# Input Output
1 4
2 -4 0 100
2 100