#41325: python


suyueh (suyueh)

學校 : 不指定學校
編號 : 272111
來源 : [101.12.162.212]
最後登入時間 :
2024-11-10 22:20:41
a224. 明明愛明明 | From: [125.229.229.84] | 發表日期 : 2024-07-17 13:27

while True:
  try:
    word=input().lower()
  except:
    break
  new=''.join(filter(str.isalpha,word))
  alphas=set(new)
  cunt=[]
  for alpha in alphas:
    cunt.append(new.count(alpha)%2)
  if cunt.count(1)>1:
    print('no...')
  else:
    print('yes !')
 
ZeroJudge Forum