Deciding
On the first count, it would seem to be better to define TYPE as a single-character variable.
INPUT @20 TYPE $1. @;
On the other hand, it would seem to be better to define SSN as numeric since the following code will use 9 bytes of storage to record the social security number.
INPUT @20 SSN $9. @; DATALINES; ... 123456789
On the second count, since you are not doing any arithmetic on TYPE, it would seem to be better to define TYPE as a single-character variable.