static L<Pair<S>> testAnswerFunction(S input) {
  L<Pair<S>> l = new L;
  for (S s : toLinesFullTrim(input))
    l.add(pair(s, callAnswerFunctionVerbose(s)));
  ret l;
}