#3681. C++-字符串-判断C语言合法的标识符号

C++-字符串-判断C语言合法的标识符号

Background

Description

给定一个不包含空白符的字符串,请判断是否是C语言合法的标识符号,如果合法,则输出"yes",否则输出"no"(注:题目保证这些字符串一定不是C语言的保留字)。

image

Format

Input

Output

Samples

1abcde
no
abc_123
yes

Limitation

1s, 1024KiB for each test case.