Advertisement
Horikita_Suzune

Untitled

Sep 14th, 2019
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.76 KB | None | 0 0
  1. from sys import stdin
  2. ch=["﹏","兝","α","么","功","吒","吭","沔","坼","歿","俞","枯","苒","娉","珮","豹","崤","淚","許","廄","琵","跚","愧","稞","鈾","暝","蓋","墦","穀","閱","璞","餐","縷","擺","黠","孀","髏","躡","尐","佢","汻","岤","狖","垥","柦","胐","娖","涂","罡","偅","惝","牾","莍","傜","揊","焮","茻","鄃","幋","滜","綅","赨","塿","槙","箤","踊","嫹","潿","蔌","醆","嬞","獦","螏","餤","燡","螰","駹","礒","鎪","瀙","酀","瀵","騱","酅","贕","鱋","鱭"]
  3. while True:
  4.  line=stdin.readline()
  5.  if not line:
  6.   break
  7.  line=line.strip()
  8.  b=0
  9.  for i in range(len(ch)):
  10.   for j in range(len(line)):
  11.    if line[j]==ch[i]:
  12.     b=1
  13.  if b==1:
  14.   print('Yes')
  15.  else:
  16.   print('No')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement