#169. noNeg

noNeg

Background

Description

Given a list of integers, return a list of the integers, omitting any that are less than 0.

Format

Input

Output

Samples

[1 -2]
[1]
[-3 -3 3 3]
[3, 3]
[-1 -1 -1]
[]

Limitation

1s, 1024KiB for each test case.