Advertisement
maxim_shlyahtin

Задача 1(занятие 1)

Oct 9th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. s = input().split()
  2. l = input().split()
  3. g = []
  4. for i in range(len(s)):
  5. if s[i] not in l:
  6. g.append(int(s[i]))
  7. print(g)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement