Chika is learning how to write her name in English! In the garbled mess of her handwriting, is it possible to see her name?
Constraints
Input Specification
The first line contains a single positive integer, , the number of handwriting samples Chika has.
Each of the next lines contains a single string, , a string of lowercase letters.
Output Specification
Output lines. On the th line, output YES
if the th string contains chika
as a substring
and NO
otherwise.
Sample Input
2
chika
rimuru
Sample Output
YES
NO
Comments