string str = Console.ReadLine();
//判断数字字_
//数字开头
bool isRight=ture;
for (int i = 0;i<str.Length;i++)
{
//不是数字,不是小写字母,不是大写字母,不是下划线
if((strp[i]<'0'||str[i]>'9')&&
(strp[i]<'a'||str[i]>'z')&&
(strp[i]<'A'||str[i]>'Z')&&
( strp[i]!='_'))
{
isRight=false;
break;
}
//不能是数字开头
if((strp[i]>='0'||str[i]<='9')
{
isRight=false;
break;
}
}