What you probably need what's known as the Macgyver technique.
Create a file of blanks, with as many rows as you require on the output
eg
TABLE FILE CAR
PRINT COUNTRY NOPRINT
AND COMPUTE
BLANK/A1 = ' ';
COUNTER/I9 = LAST COUNTER + 1;
WHERE RECORDLIMIT EQ x (as many rows as you need)
ON TABLE HOLD AS BLANKS
END
Create a dummy field in the data file and join to BLANKS
JOIN BLANK WITH CAR IN MYFILE TO ALL BLANK IN BLANKS
DEFINE FILE MYFILE
BLANK/A1 = ' ';
END
TABLE FILE MYFILE
PRINT CAR COUNTRY COUNTER
ON TABLE HOLD AS HOLD1
END
This file now contains each Car / Country x number of times, so
DEFINE FILE HOLD1
FIELD1/A20 = IF COUNTER EQ 1 THEN CAR ELSE
IF COUNTER EQ 2 THEN COUNTRY ELSE ' ';
END
TABLE FILE HOLD1
PRINT FIELD1 AS 'Car,Country'
END
Dependiong on what you're doing, you'll need to add various measures to prevent blank lines etc but this should be a start.