import re N = int(input()) S = input() S = S.replace('w?','wa').replace('?a','wa').replace('?o','wo').replace('?','n') ans = re.match('^(wa|wo|n)*$', S) if ans: print('Yes') else: print('No')