According to Java standard library documentation, the hash code of $\texttt{String}$ is computed as
$\\\verb| s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]|$
Here $\texttt{s[i]}$ is the $i$-th character of the string, $\verb|n|$ is the length of the string, and $\verb|^|$ indicates exponentiation. Computation uses signed 32-bit integers in two's complement form.
Heather is going to hack the servers of Not Entirely Evil Recording Company (NEERC). To perform an attack she needs $k$ distinct query strings that have equal hash codes. Unfortunately, NEERC servers accept query string containing lower- and uppercase English letters only.
Heather hired you to write a program that generates such query strings for her.