Advertisement
sphinx2001

четные числа

Sep 22nd, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.07 KB | None | 0 0
  1. n = int(input('Input N:'))
  2. [print(el) for el in range(n+1) if el % 2 == 0]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement