Lou,
If you are NOT working on the mainframe, REXX [at least IBM's Object Rexx] uses the reserved variable RESULT to store the return value, if any. In your example, you could do something like this:
...
call rexx2 p1 p2;
answer = RESULT;
say "Is "||answer||" what you...