# your code goes hereimport re
import re

regex = r"^\$[a-zA-Z0-9]+"
test_str = ("$abc123&**@#$&@#$ ")
is_match = re.search(regex, test_str)
if(is_match):
	print("Yes")
else:
	print("No")
