summaryrefslogtreecommitdiff
path: root/progs/a366.py
blob: 4d08103ed967363915c141f006d177cbb056c0ba (plain)
1
2
3
4
5
def check(string): 
  if len(set(string).intersection("AEIOUaeiou"))>=5: 
    return ('accepted') 
  else: 
    return ("not accepted")