Given two shell variables, A and B, each of which is a space-separated list of numbers, how would you iterate over the lists in parallel, comparing each pair? That is, compare number A1 to number B1, A2 to B2, and so on. You may not use features not available on old systems (such as functions, arrays, and local variables) and you may not mess with the positional parameters. Comprehensibility is not important.