Advertisement
snowden_web

marafon | task10

Jun 28th, 2020
1,104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. a = [int(input()) for i in range(10)]
  2.  
  3. s = set(a)
  4.  
  5. x = int(input())
  6.  
  7. if x in s:
  8.     print("yes")
  9. else:
  10.     print("no")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement