提交时间:2023-11-10 09:38:19
运行 ID: 240
s = input() if not s.isalnum('_') or s[0].isdigit(): print("no") elif len(s) > 20: print("no") else: print("yes")