import java.util.Scanner;
public class HDU_oj2024 {
/*
* 输入一个字符串,判断其是否是C的合法标识符
* C语言标识符是指用来标识某个实体的一个符号,在不同的应用环境下有不同的含义,
* 标识符由字母(A-Z,a-z)、数字(0-9)、下划线“_”组成,
* 并且首字符不能是数字,但可以是字母或者下划线。
* 例如,正确的标识符:abc,a1,prog_to。
*/
public static void main(String[] args) {
Scanner sn = new Scanner(System.in);
while(sn.hasNext()) {
String n = sn.nextLine(); //注意区分next() 和 nextLine()的区别
for(int i = 0; i < Integer.parseInt(n); i++) {
String s = sn.nextLine();
if(s.matches("^[A-Za-z_][A-Za-z_0-9]*")) //最好的方法就是利用正则进行匹配
System.out.println("yes");
else
System.out.println("no");
}
}
sn.close();
}
}