Given a string and patterns, check for each pattern if it appears in the string.
The first input line has a string of length $n$ .
The next input line has an integer $k$ : the number of patterns. Finally, there are $k$ lines that describe the patterns.
The string and the patterns consist of characters a–z.
For each pattern, print "YES" if it appears in the string and "NO" otherwise.