import java.util.regex.Matcher;
import java.util.regex.Pattern;
 
class Main
{
	public static void main (String[] args) throws java.lang.Exception
	{
		Pattern p = Pattern.compile(".*a");
		Matcher m = p.matcher(new String(new char[10000]).replace("\0", "z"));
		m.find();
	}
}