fork download
  1. # your code goes here
  2. r,s=map(int,raw_input().split())
  3. list=[int(x) for x in raw_input().split()]
  4. if r and s in list:
  5. print "yes"
  6. else:
  7. print "No"
Runtime error #stdin #stdout #stderr 0s 23296KB
stdin
helloworld.123
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "prog.py", line 2, in <module>
ValueError: invalid literal for int() with base 10: 'helloworld.123'