sS dropTrailingNewLine(S s) { int l = l(s); if (l > 0 && s.charAt(l-1) == '\n') --l; if (l > 0 && s.charAt(l-1) == '\r') --l; ret takeFirst(s, l); }