public static String ensureFirstIsNotCap(String in){
        if(Character.isLowerCase(in.charAt(0))){
            return in;
        }