# [Pyth], 16 bytes

 V101p? %N/T5N]\E

[Try it online!][TIO-k4dchtpq]

[Pyth]: https://github.com/isaacg1/pyth
[TIO-k4dchtpq]: https://tio.run/##K6gsyfj/P8zQwLDAXkHVTz/E1C82xvX/fwA "Pyth – Try It Online"
[Verify it online!](https://tio.run/##K6gsyfj/P1fVOcWo/P//MEMDwwJ7BVW/Yh1DBUO/2BhXAA "Pyth – Try It Online")

## How it works:

 V101p? %N/T5N]\E
 V101 - For 'N' in 0..100
 ? %N/T5 - If N modulo (10÷5) (or N%2) is truthy...
 N - ...return N
 ]\E - Otherwise, return the one-element list 'E'
 p - Print the result