#41325: python


suyueh (suyueh)

School : No School
ID : 272111
IP address : [125.228.45.241]
Last Login :
2025-04-21 17:28:23
a224. 明明愛明明 | From: [125.229.229.84] | Post Date : 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