import hsa.Console;

public class Memory_password
{
    public static boolean subtle (Console con)
    {
	char input;
	boolean correct = true;
    
	String password = "reset";
	for (int i = 0 ; i < password.length () ; i++)
	{
	    input = con.getChar ();
	    if (input != password.charAt (i))
	    {
		correct = false;
		break;
	    }
	}
	return correct;
    }
}
