Advertisement
simeonshopov

Even Numbers

May 27th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.07 KB | None | 0 0
  1. print(list(filter(lambda x: x % 2 == 0, [int(x) for x in input().split()])))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement