static int parseIntAtEnd(S s) { int i = l(s); while (i > 0 && isDigit(charAt(s, i-1))) --i; ret parseInt(substring(s, i)); }