The REXX PARSE statement with a single variable template splits the input string by whitespace into sequential variables. PARSE VAR INPUT_STRING ONE TWO THREE parses 'HOW ARE YOU' by assigning the first word 'HOW' to ONE, second word 'ARE' to TWO, and third word 'YOU' to THREE.