vars x, y;
for x from 1 to 10 do
  for y from 1 to 10 do
    if x + y = 11 then
      pr(x, ' + ', y, ' = 11\n');
    endif;
  endfor
endfor